We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5a78d1 commit bdcb585Copy full SHA for bdcb585
.github/workflows/release.yml
@@ -3,10 +3,10 @@ name: Goreleaser
3
on:
4
workflow_dispatch:
5
inputs:
6
- goReleaserConfig:
7
- description: 'Configuration ENV for goreleaser'
+ goReleaserArgs:
+ description: 'Args goreleaser'
8
required: false
9
- default: 'CGO_ENABLED=1'
+ default: '--clean'
10
push:
11
tags:
12
- "*"
@@ -38,7 +38,7 @@ jobs:
38
with:
39
distribution: goreleaser
40
version: latest
41
- args: release --clean
+ args: release ${{ github.event.inputs.goReleaserArgs }}"
42
env:
43
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
0 commit comments