Skip to content

Commit

Permalink
change to secrets from ENV (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
elchananarb authored Sep 24, 2024
1 parent 29261b6 commit 632e891
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ docker_signs:
- "${artifact}"
- "--yes"
artifacts: images
stdin: "{{ .Env.COSIGN_PASSWORD }}"
stdin: "{{ secrets.COSIGN_PASSWORD }}"
env:
- COSIGN_PRIVATE_KEY={{ .Env.COSIGN_PRIVATE_KEY }}
- COSIGN_PASSWORD={{ .Env.COSIGN_PASSWORD }}
- COSIGN_PUBLIC_KEY={{ .Env.COSIGN_PUBLIC_KEY }}
- COSIGN_PRIVATE_KEY={{ secrets.COSIGN_PRIVATE_KEY }}
- COSIGN_PASSWORD={{ secrets.COSIGN_PASSWORD }}
- COSIGN_PUBLIC_KEY={{ secrets.COSIGN_PUBLIC_KEY }}
output: true

archives:
Expand Down

0 comments on commit 632e891

Please sign in to comment.