Skip to content

Commit

Permalink
Update release-publish.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Vilimek <[email protected]>
  • Loading branch information
jvilimek authored Mar 11, 2023
1 parent c3f1614 commit ba5fa8f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ jobs:
- name: Prepare .npmrc
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
git add .npmrc # prevents [lerna ERR! EUNCOMMIT M .npmrc] during publish
# next lines prevents [lerna ERR! EUNCOMMIT M .npmrc] during publish
git config --global user.email "[email protected]"
git config --global user.name "nobody"
git add .npmrc
git commit
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit ba5fa8f

Please sign in to comment.