We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91f8d00 commit c7eea30Copy full SHA for c7eea30
1 file changed
.github/workflows/release.yml
@@ -101,12 +101,18 @@ jobs:
101
- compile
102
runs-on: ubuntu-latest
103
steps:
104
- - name: Git Identity
+ - name: Set Git Identity
105
run: |
106
git config --global user.name 'github-actions[bot]'
107
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
108
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
109
env:
110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
111
+
112
+ - name: Set NPM Token
113
+ run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
114
+ env:
115
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
116
117
- name: Publish
118
run: yarn lerna publish from-package --yes
0 commit comments