Skip to content

Commit

Permalink
Fix conditional for RC input (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
Niki authored Feb 3, 2023
1 parent 44f8b57 commit e39625d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
go-
- name: Set release version
run: |
if $INPUT_RELEASE_CANDIDATE; then
if ${{ inputs.release_candidate }}; then
echo "RELEASE_VERSION=$(go run $GITHUB_WORKSPACE/pkg/version/generate/release_generate.go print-rc-version)" >> $GITHUB_ENV
else
echo "RELEASE_VERSION=$(go run $GITHUB_WORKSPACE/pkg/version/generate/release_generate.go print-version)" >> $GITHUB_ENV
Expand Down

0 comments on commit e39625d

Please sign in to comment.