Skip to content

Commit 4f0ee5c

Browse files
committed
Set the tag after pushing to NuGet
1 parent 06f9a70 commit 4f0ee5c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/nightly_release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,10 @@ jobs:
8686

8787
- name: Publish to NuGet.org
8888
run: dotnet nuget push ${{ github.workspace }}\*.nupkg --source https://api.nuget.org/v3/index.json -k ${{ secrets.PAT }} --skip-duplicate
89+
90+
- name: Update latest tag
91+
run: |
92+
git config user.name github-actions
93+
git config user.email [email protected]
94+
git tag -f latest master
95+
git push

0 commit comments

Comments
 (0)