We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c215204 commit ee5d737Copy full SHA for ee5d737
.github/workflows/release.yaml
@@ -61,6 +61,13 @@ jobs:
61
registry: ghcr.io
62
username: ${{ github.repository_owner }}
63
password: ${{ secrets.GITHUB_TOKEN }}
64
+ - name: Create Tag
65
+ if: ${{ github.event.inputs.tag != '' }}
66
+ run: |
67
+ git tag ${{ github.event.inputs.tag }}
68
+ git push origin ${{ github.event.inputs.tag }}
69
+ env:
70
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
- name: Run GoReleaser
72
uses: goreleaser/goreleaser-action@v6
73
with:
0 commit comments