Skip to content

Commit

Permalink
ci(release): fix prerelease condition (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoishin committed Jan 2, 2024
1 parent 3c91a12 commit d3ead8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
release-type: node
package-name: nodecg
prerelease: ${{ startsWith('release/', github.ref_name) && 'rc' || false }}
prerelease: ${{ startsWith(github.ref_name, 'release/') && 'rc' || false }}

publish:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d3ead8b

Please sign in to comment.