Skip to content

Commit

Permalink
Fix startsWith() call in update-release condition
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHendrickson committed Dec 19, 2023
1 parent 1d78c38 commit 483ff1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
update-release:
name: Update release
runs-on: ubuntu-latest
if: startsWith('refs/tags/release/', github.ref)
if: startsWith(github.ref, 'refs/tags/release/')
permissions:
contents: write
needs:
Expand Down

0 comments on commit 483ff1b

Please sign in to comment.