Skip to content

Commit

Permalink
[autorelease] Fix RELEASE_BRANCH computation.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Dec 9, 2023
1 parent b68b375 commit 7f03538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on: [push, pull_request]
name: Test & publish
env:
RELEASE_BRANCH: "${{ startsWith(github.event.ref, 'refs/heads/develop-') || startsWith(github.event.ref, 'refs/heads/release-') }}"
RELEASE_BRANCH: "${{ github.ref == 'refs/heads/release' }}"
jobs:
test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7f03538

Please sign in to comment.