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 a9aa112 commit 91a10e9Copy full SHA for 91a10e9
.github/workflows/release.yml
@@ -24,7 +24,11 @@ jobs:
24
with:
25
go-version: 1.17.x
26
27
- - uses: sigstore/cosign-installer@main
+ - name: install head cosign
28
+ run: go install github.com/sigstore/cosign@main
29
+
30
+ - name: check cosign
31
+ run: cosign version
32
33
- name: Run GoReleaser
34
uses: goreleaser/goreleaser-action@v2
.goreleaser.yml
@@ -9,7 +9,7 @@ before:
9
hooks:
10
- make clean
11
- make dist
12
- - sh -c "cosign sign-blob --timeout 360s dist/alertmanager-{{ .Version }}.tar.gz > dist/alertmanager-{{ .Version }}.sig"
+ - sh -c "cosign sign-blob --timeout 360s --output dist/alertmanager-{{ .Version }}.sig dist/alertmanager-{{ .Version }}.tar.gz"
13
14
checksum:
15
extra_files:
0 commit comments