publish next version

This commit is contained in:
Yotam Mann 2024-04-25 14:30:32 -04:00
parent 0437bdc049
commit fea94faaf1

View file

@ -22,6 +22,9 @@ jobs:
run: npm run build
- name: Increment version
run: npm run increment
- name: Publish Dev
run: npm publish --tag next --dry-run
if: ${{ github.ref == 'refs/heads/dev' }}
- name: Publish @next
run: npm publish --tag next
if: ${{ github.ref == 'refs/heads/dev' }}
- name: Publish @latest
run: npm publish
if: ${{ github.ref == 'refs/heads/main' }}