Skip to content

Commit

Permalink
ci: [skip ci] Fixing missing arg for gpg
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
ViBiOh committed Nov 27, 2022
1 parent d042731 commit 43737fe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
- released

env:
SCRIPTS_NO_INTERACTIVE: 'true'
SCRIPTS_NO_INTERACTIVE: "true"

defaults:
run:
Expand All @@ -37,14 +37,15 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: '^1.19'
go-version: "^1.19"
- name: Build
run: make init
- name: GPG
id: import_gpg
if: ${{ env.gpg_private_key != '' }}
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ env.gpg_private_key }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Assets
env:
Expand Down

0 comments on commit 43737fe

Please sign in to comment.