Skip to content

Commit

Permalink
Update dev-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pakkographic committed Aug 13, 2024
1 parent 9e4887c commit 7bc1157
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
echo "Setting Version: $v"
contents=$(jq --arg version "$v" '.version = $version' package.json) && echo -E "${contents}" > package.json
- name: Publish
run: npm publish --tag dev --provenance --access public --no-git-checks --auth=$NODE_AUTH_TOKEN
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
npm publish --tag dev --provenance --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Deprecate Old Versions
Expand Down

0 comments on commit 7bc1157

Please sign in to comment.