We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 142a2cb commit 59a64a4Copy full SHA for 59a64a4
.github/.goreleaser.yaml
@@ -49,11 +49,10 @@ notarize:
49
binary_signs:
50
- cmd: cosign
51
stdin: "{{ .Env.COSIGN_PWD }}"
52
+ signature: "${artifact}.sig"
53
args:
54
- sign-blob
- - --key
55
- - env://COSIGN_KEY
56
- - --output-signature
57
- - "${artifact}.sig"
+ - --key=env://COSIGN_KEY
+ - --output-signature=${signature}"
58
- "${artifact}"
59
- --yes
.github/workflows/assets.yaml
@@ -28,7 +28,7 @@ jobs:
28
uses: goreleaser/goreleaser-action@v6
29
with:
30
version: '~> v2'
31
- args: release --config .github/.goreleaser.yaml
+ args: release --config .github/.goreleaser.yaml --clean
32
env:
33
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
34
MACOS_SIGN_P12: ${{ secrets.MACOS_SIGN_P12 }}
0 commit comments