Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
path: npm-dist/
- name: Publish to npm
run: |
npm publish npm-dist/*.tgz --access public
FILE=$(ls npm-dist/*.tgz)
npm publish "$FILE" --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
shell: bash