From 7e802b7b4c2ce5c78a3d6ed750b01bd06293a9b2 Mon Sep 17 00:00:00 2001 From: Filip Weiss Date: Sun, 23 Apr 2023 13:14:52 +0200 Subject: [PATCH] ci: fix sign secret variable names --- .github/workflows/tag.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 9eca5e6..cce4f82 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -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: