Skip to content

Commit

Permalink
Fix evaluation of expression
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgeary committed Aug 15, 2024
1 parent f16d163 commit 7721fe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

env:
PREFIX_REGEX: 'build#(.*)'
IS_PRERELEASE: (startsWith(github.ref, 'refs/tags/build#') && contains(github.ref, '-')) || !startsWith(github.ref, 'refs/tags/build#')
IS_PRERELEASE: ${{ (startsWith(github.ref, 'refs/tags/build#') && contains(github.ref, '-')) || !startsWith(github.ref, 'refs/tags/build#') }}

jobs:
update-version:
create-release:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
Expand Down

0 comments on commit 7721fe7

Please sign in to comment.