Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: José Guilherme Vanz <[email protected]>
  • Loading branch information
jvanz committed Mar 13, 2024
1 parent 3364f75 commit fdf51df
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 @@ -16,6 +16,7 @@ jobs:
script: |
core.debug('------------------------------------------------')
core.debug(`${{ github.ref_name }}`)
core.debug(`${{ contains(github.ref_name, '-alpha') || contains(github.ref_name, '-beta') || contains(github.ref_name, '-rc') }}`)
core.debug('------------------------------------------------')
ci:
Expand Down Expand Up @@ -136,7 +137,7 @@ jobs:
draft: false,
tag_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') }}`
prerelease: `${{ contains(github.ref_name, '-alpha') || contains(github.ref_name, '-beta') || contains(github.ref_name, '-rc') }}`
});
- name: Trigger chart update
Expand Down

0 comments on commit fdf51df

Please sign in to comment.