Skip to content

RobertChaw triggers master deployment #11

RobertChaw triggers master deployment

RobertChaw triggers master deployment #11

Workflow file for this run

name: deployment
run-name: ${{ github.actor }} triggers ${{github.ref_name}} deployment
on:
push:
branches:
- 'master'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}