We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8174e89 commit 09eeea8Copy full SHA for 09eeea8
.github/workflows/tauri.yml
@@ -24,9 +24,14 @@ jobs:
24
- name: get tag
25
id: get_tag
26
run: echo ::set-output name=tag::$(jq -r .version package.json)
27
- - uses: actions-ecosystem/action-push-tag@v1
+ - name: Git tag
28
+ uses: pkgdeps/git-tag-action@v2
29
with:
- tag: ${{ steps.get_tag.outputs.tag }}
30
+ github_token: ${{ secrets.GITHUB_TOKEN }}
31
+ github_repo: ${{ github.repository }}
32
+ git_commit_sha: ${{ github.sha }}
33
+ version: ${{ steps.get_tag.outputs.tag }}
34
+ git_tag_prefix: "v"
35
test-tauri:
36
name: CI
37
needs: create-tag
0 commit comments