We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f759d commit 2f80f37Copy full SHA for 2f80f37
.github/workflows/goreleaser.yml
@@ -30,8 +30,9 @@ jobs:
30
- name: Bump tag if necessary
31
id: tag
32
run: |
33
- if [ -z $(git tag -l $(git-semver)) ]; then
34
- git tag $(git-semver)
+ nextver=v$(git-semver)
+ if [ -z $(git tag -l ${nextver}) ]; then
35
+ git tag ${nextver}
36
git push --tags
37
echo "new=true" >> $GITHUB_OUTPUT
38
fi
.goreleaser.yaml
@@ -1,3 +1,4 @@
1
+version: 2
2
builds:
3
- id: onionpipe
4
binary: onionpipe
@@ -9,7 +10,8 @@ builds:
9
10
- amd64
11
12
brews:
-- tap:
13
+- name: onionpipe
14
+ repository:
15
owner: cmars
16
name: homebrew-onionpipe
17
branch: main
0 commit comments