Skip to content

changed author name #14

changed author name

changed author name #14

Workflow file for this run

name: Release & Publish to NPM
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install the dependencies
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install
- run: yarn test
- name: Initilise the NPM config
run: npm config set //registry.npmjs.or/:_authtoken $NPM_TOKEN
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN}}
- name: Run release
run: npm run release --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN}}