Skip to content

Commit

Permalink
Merge pull request #72 from jvanz/prerelease-property
Browse files Browse the repository at this point in the history
fix: enable release candidates when required
  • Loading branch information
viccuad committed Jul 21, 2023
2 parents 0ec0e6a + 6c4add6 commit 7f880cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ jobs:
release_id: `${RELEASE_ID}`,
draft: false,
tag_name: `${TAG_NAME}`,
name: `${TAG_NAME}`
name: `${TAG_NAME}`,
prerelease: `${{ contains(github.event.workflow_run.head_branch, '-alpha') || contains(github.event.workflow_run.head_branch, '-beta') || contains(github.event.workflow_run.head_branch, '-rc') }}`
});
- name: Trigger chart update
Expand Down

0 comments on commit 7f880cb

Please sign in to comment.