Workflow changes (#269)

* feat(workflows): pr actions workflow
* fix(workflows): split version bump and publish
This commit is contained in:
Ismo Vuorinen
2024-07-02 14:02:49 +03:00
committed by GitHub
parent 5ccf62bf86
commit b4b41a9056
2 changed files with 63 additions and 4 deletions

View File

@@ -48,10 +48,17 @@ jobs:
- name: Bootstrap Lerna
run: yarn lerna:bootstrap:ci
- name: Bump Versions and Publish Packages
- name: Bump Versions
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn lerna:version
yarn lerna:publish
run: yarn lerna:version
- name: Auto Commit Changes
uses: stefanzweifel/git-auto-commit-action@v5
- name: Publish Packages
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn lerna:publish