Skip to content

Commit

Permalink
Add prerelease step for next branch (#602)
Browse files Browse the repository at this point in the history
Add next prerelease step
  • Loading branch information
lindskogen authored Sep 25, 2023
1 parent ac66fbb commit c6699c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
build-script: "-v" # Will execute `yarn run -v` (essentially a no-op)
pattern: "packages/*/dist/*.js"
- name: Create Release
if: ${{ github.event_name == 'push' && github.ref_name == 'master' && !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') }}
if: ${{ github.event_name == 'push' && (github.ref_name == 'master' || github.ref_name == 'next') && !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') }}
run: |
yarn auto shipit
rm $HOME/.npmrc || true
Expand Down

0 comments on commit c6699c4

Please sign in to comment.