Skip to content

Commit

Permalink
correct prerelease logic for CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Lance-Drane authored Jun 10, 2024
1 parent 0ea5ebd commit fe8559f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
files: |
dist/*
# assume any version with "a" (gets "ALPHA") or "b" (gets BETA) will be a prerelease
prerelease: ${{ contains(github.ref, 'a') || contains(github.ref, 'b') }}
prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') }}

0 comments on commit fe8559f

Please sign in to comment.