Skip to content

Commit

Permalink
ci: fix sign secret variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
fiws committed Apr 23, 2023
1 parent e7a3b4a commit 7e802b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tag.yml
Expand Up @@ -31,12 +31,12 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y osslsigncode
- name: Write osslsigncode cert & key
env:
SIGNCODE_CERT: ${{ secrets.SIGNCODE_CERT }}
SIGNCODE_KEY: ${{ secrets.SIGNCODE_KEY }}
SIGNING_CERT: ${{ secrets.SIGNING_CERT }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
run: |
mkdir -p ./.tmp
echo ${{ secrets.SIGNCODE_CERT }} > ./.tmp/cert.cert
echo ${{ secrets.SIGNCODE_KEY }} > ./.tmp/key.pem
echo ${{ secrets.SIGNING_CERT }} > ./.tmp/cert.cert
echo ${{ secrets.SIGNING_KEY }} > ./.tmp/key.pem
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
env:
Expand Down

0 comments on commit 7e802b7

Please sign in to comment.