Skip to content

Commit

Permalink
fix: fix workflow env
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Nov 26, 2021
1 parent 8cca899 commit 3acf669
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
GH_TOKEN: ${{secrets.GH_TOKEN}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
GH_USER: ${{secrets.GH_USER}}
GH_EMAIL: ${{secrets.GH_EMAIL}}
VC_HTTP_API_AUTH_TOKEN: ${{secrets.VC_HTTP_API_AUTH_TOKEN}}
Expand Down Expand Up @@ -67,6 +67,7 @@ jobs:
run: |
echo "@sphereon:registry=https://registry.npmjs.org/" > .npmrc
echo "registry=https://registry.npmjs.org/" >> .npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
npm whoami
- name: publish @latest when on main
Expand Down

0 comments on commit 3acf669

Please sign in to comment.