Skip to content

Commit

Permalink
Update dotnet-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zaw4rud0 authored Dec 7, 2023
1 parent 1db65c2 commit f77bc22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:

- name: Generate tag name
id: tag_name
run: echo "RELEASE_TAG=release-$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
run: |
$tag = "release-" + $(Get-Date -Format "yyyyMMddHHmmss")
echo "RELEASE_TAG=$tag" >> $GITHUB_ENV
- name: Create Release
id: create_release
Expand Down

0 comments on commit f77bc22

Please sign in to comment.