Skip to content

Merge branches 'main' and 'main' of github.com:rumsystem/rum-torrent #39

Merge branches 'main' and 'main' of github.com:rumsystem/rum-torrent

Merge branches 'main' and 'main' of github.com:rumsystem/rum-torrent #39

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, '[RELEASE]')"
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 19
registry-url: https://registry.npmjs.org/
- run: git config --global user.name 'Leask Wong'
- run: git config --global user.email 'i@leaskh.com'
- run: npm version patch -m "[RELEASE] %s"
- run: npm install
- run: npm run build
- run: git push
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}