We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa9ea2 commit 3cf5099Copy full SHA for 3cf5099
1 file changed
.github/workflows/release.yml
@@ -33,11 +33,10 @@ jobs:
33
34
- name: Create tag
35
run: |
36
- TAG="release-$(date +%s)"
37
git config user.name "github-actions"
38
git config user.email "github-actions@github.com"
39
- git tag $TAG
40
- git push origin $TAG
+ git tag -f latest
+ git push origin -f --tags
41
env:
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43
0 commit comments