We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c34eb71 commit 484cbdaCopy full SHA for 484cbda
.github/workflows/release.yml
@@ -14,6 +14,7 @@ on:
14
push:
15
tags:
16
- 'v*'
17
+ workflow_dispatch:
18
jobs:
19
goreleaser:
20
runs-on: ubuntu-latest
@@ -31,10 +32,10 @@ jobs:
31
32
run: echo "::set-output name=api_version::$(go run . describe | jq -r '.api_version')"
33
- name: Import GPG key
34
id: import_gpg
- uses: hashicorp/ghaction-import-gpg@v2.1.0
35
- env:
36
- GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
37
- PASSPHRASE: ${{ secrets.PASSPHRASE }}
+ uses: crazy-max/ghaction-import-gpg@v5.0.0
+ with:
+ gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
38
+ passphrase: ${{ secrets.GPG_PASSPHRASE }}
39
- name: Run GoReleaser
40
uses: goreleaser/goreleaser-action@v2
41
with:
0 commit comments