Skip to content

Commit

Permalink
chore: fix publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderPostma committed Oct 25, 2024
1 parent 14b1088 commit df3f6ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ jobs:

- name: publish @next when on develop
if: github.ref == 'refs/heads/develop'
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes --registry https://registry.npmjs.org",
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes --registry https://registry.npmjs.org

- name: publish @next when on fix branch
if: startsWith(github.ref, 'refs/heads/fix')
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid fix --pre-dist-tag fix --yes --registry https://registry.npmjs.org",
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid fix --pre-dist-tag fix --yes --registry https://registry.npmjs.org

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

0 comments on commit df3f6ea

Please sign in to comment.