chore: add github workflow for npm publish #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Publishing all NPM packages to the npm registry when the version number changes | |
# See https://github.com/marketplace/actions/npm-publish for more information | |
name: Publish Packages to npmjs | |
# TODO: after confirming that the action works, set the trigger on "development" branch commits instead of PRs | |
# on: | |
# push: | |
# branches: development | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
# Publish the TypeScript bindings to the NPM registry | |
publish-typescript-bindings: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./bindings | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- run: npm ci | |
- run: npm test | |
- uses: JS-DevTools/npm-publish@v3 | |
id: publish | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
- if: ${{ steps.publish.outputs.type }} | |
run: echo "Published to NPM registry '${{ steps.publish.outputs.name }}' version '${{ steps.publish.outputs.version }}'" | |
# Publish the Tari Wallet Daemon client to the NPM registry | |
publish-wallet-daemon-client: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./clients/javascript/wallet_daemon_client | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- run: npm ci | |
- run: npm test | |
- uses: JS-DevTools/npm-publish@v3 | |
id: publish | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
- if: ${{ steps.publish.outputs.type }} | |
run: echo "Published to NPM registry '${{ steps.publish.outputs.name }}' version '${{ steps.publish.outputs.version }}'" | |