Skip to content

Commit 6892e4e

Browse files
add bool variable to auto-release (#11290)
1 parent e1bd4d2 commit 6892e4e

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ on:
1414
# to be used by fork patch-releases ^^
1515
- 'v*.*.*-*'
1616
workflow_dispatch:
17-
inputs:
18-
publish_artifacts:
19-
description: 'Publish Artifacts (not dry-run)'
20-
required: true
21-
type: boolean
2217

2318
jobs:
2419
goreleaser:
@@ -59,13 +54,9 @@ jobs:
5954

6055
- run: echo ${{ steps.prepare.outputs.tag_name }}
6156

62-
- name: Release publish_artifacts=${{ inputs.publish_artifacts }}
57+
- name: Release
6358
run: |
64-
if ${{ inputs.publish_artifacts }}; then
65-
make release
66-
else
67-
make release-dry-run
68-
fi
59+
make release
6960
docker images
7061
env:
7162
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)