Skip to content

feat: attach more artifacts to rp (#35) #46

feat: attach more artifacts to rp (#35)

feat: attach more artifacts to rp (#35) #46

Workflow file for this run

name: Publish npm Package
on:
push:
branches:
- master
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npx semantic-release
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
GH_TOKEN: ${{ secrets.GH_TOKEN }}