Skip to content

Commit

Permalink
fix: also publish when on a fix branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Jul 14, 2023
1 parent ca16f70 commit e8b678e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ jobs:
if: github.ref == 'refs/heads/develop'
run: pnpm publish:next

- name: publish @next when on fix branch
if: startsWith(github.ref, 'refs/heads/fix')
run: pnpm publish:next

- name: publish @unstable when on unstable branch
if: startsWith(github.ref, 'refs/heads/feat')
run: pnpm publish:unstable

0 comments on commit e8b678e

Please sign in to comment.