Skip to content

Commit

Permalink
Avoid beta tags for stable build
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Nov 25, 2024
1 parent 0d175e9 commit 9855abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
env:
IS_PUSH_MAIN: ${{ github.ref == 'refs/heads/main' }}
IS_PUSH_TAG: ${{ startsWith(github.ref, 'refs/tags/') }}
IS_PUSH_TAG: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'beta') }}
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down

0 comments on commit 9855abb

Please sign in to comment.