Skip to content

Commit

Permalink
update date generation to non-deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargaj committed Mar 23, 2024
1 parent 84ed5e7 commit 46bc4e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
steps:
- name: Get date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: |
echo "date=$(date +"%Y-%m-%d")" >> $env:GITHUB_OUTPUT
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit 46bc4e7

Please sign in to comment.