Skip to content

Commit

Permalink
add email (#6)
Browse files Browse the repository at this point in the history
Co-authored-by: Rodolfo <[email protected]>
  • Loading branch information
ladeirarodolfo and Rodolfo authored Dec 4, 2023
1 parent 28391d1 commit 3880d06
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,24 @@ jobs:
node-version: 18
registry-url: https://npm.pkg.github.com/
scope: radicalimaging
- run: lerna version patch --yes
- run: yarn install --frozen-lockfile
- run: yarn build
- run: lerna publish --loglevel verbose --ignore-scripts --yes --canary --registry "https://npm.pkg.github.com/" --force-publish

- name: "Set user"
run: |
git config --global user.name 'Rodolfo Costa'
git config --global user.email 'rodolfo.costa@radicalimaging'
- name: "Update lerna json version"
run: lerna version patch --yes
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: "Install packages"
run: yarn install --frozen-lockfile

- name: "Build"
run: yarn build

- name: "Publish packages"
run: lerna publish --loglevel verbose --ignore-scripts --yes --canary --registry "https://npm.pkg.github.com/" --force-publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 3880d06

Please sign in to comment.