Skip to content

Commit

Permalink
use docker instead of quay
Browse files Browse the repository at this point in the history
  • Loading branch information
joejulian committed Sep 15, 2023
1 parent 52b63b0 commit a712f15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ jobs:
- name: Login to registry
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
with:
registry: quay.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

Expand Down
5 changes: 3 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,15 @@ docker_manifests:
signs:
- id: all
signature: "${artifact}.sig"
certificate: "${artifact}.pem"
cmd: cosign
args: ["sign-blob", "--key", "/home/jjulian/.local/lib/cosign/cosign.key", "--output-signature", "${artifact}.sig", "--output-certificate", "${artifact}.pem", "${artifact}"]
args: ["sign-blob", "--output-signature", "${artifact}.sig", "--output-certificate", "${artifact}.pem", "${artifact}"]
artifacts: all

docker_signs:
- id: images
cmd: cosign
args: ["sign", "--key", "/home/jjulian/.local/lib/cosign/cosign.key", "${artifact}"]
args: ["sign", "${artifact}"]
artifacts: manifests

changelog:
Expand Down

0 comments on commit a712f15

Please sign in to comment.