We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc14656 commit 67a26beCopy full SHA for 67a26be
1 file changed
.github/workflows/release.yml
@@ -30,8 +30,18 @@ jobs:
30
pnpm zip:firefox
31
mv .output/*-firefox.zip .output/tailname-firefox.zip
32
33
+ - name: Create and push tag
34
+ id: create_and_push_tag
35
+ run: |
36
+ TAG=auto-release-$(git rev-parse --short HEAD)
37
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
38
+ git config --global user.name "github-actions[bot]"
39
+ git tag $TAG
40
+ git push origin $TAG
41
+
42
- name: Create GitHub Release and upload ZIPs
43
uses: ncipollo/release-action@v1
44
with:
45
artifacts: ".output/tailname-chrome.zip,.output/tailname-firefox.zip"
46
generateReleaseNotes: true
47
+ tag: ${{ steps.create_and_push_tag.outputs.TAG }}
0 commit comments