Skip to content

Commit

Permalink
Disable cosign
Browse files Browse the repository at this point in the history
  • Loading branch information
adberger committed Apr 5, 2024
1 parent 1ecff67 commit f17438b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c # v2
- uses: sigstore/[email protected]
# - uses: sigstore/[email protected]
- uses: anchore/sbom-action/[email protected]
- name: ghcr-login
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -30,17 +30,17 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v4
- name: Install Cosign
uses: sigstore/cosign-installer@main
with:
cosign-release: 'v1.13.1'
# - name: Install Cosign
# uses: sigstore/cosign-installer@main
# with:
# cosign-release: 'v1.13.1'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COSIGN_PWD: ${{ secrets.COSIGN_PWD }}
# COSIGN_PWD: ${{ secrets.COSIGN_PWD }}



36 changes: 18 additions & 18 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project_name: subst
env:
- COSIGN_EXPERIMENTAL=true
- COSIGN_EXPERIMENTAL=false
- GO111MODULE=on
before:
hooks:
Expand Down Expand Up @@ -164,23 +164,23 @@ changelog:
order: 9999
sboms:
- artifacts: archive
signs:
- cmd: cosign
args:
- "sign-blob"
- "--output-signature=${signature}"
- "${artifact}"
- "--yes"
artifacts: all
docker_signs:
- cmd: cosign
artifacts: manifests
output: true
args:
- 'sign'
- "--output-signature=${signature}"
- '${artifact}@${digest}'
- --yes
# signs:
# - cmd: cosign
# args:
# - "sign-blob"
# - "--output-signature=${signature}"
# - "${artifact}"
# - "--yes"
# artifacts: all
# docker_signs:
# - cmd: cosign
# artifacts: manifests
# output: true
# args:
# - 'sign'
# - "--output-signature=${signature}"
# - '${artifact}@${digest}'
# - --yes
#brews:
# - tap:
# owner: bedag
Expand Down

0 comments on commit f17438b

Please sign in to comment.