Skip to content

Merge pull request #8 from kryptokrauts/feat/1.0.10-shipreader-config… #15

Merge pull request #8 from kryptokrauts/feat/1.0.10-shipreader-config…

Merge pull request #8 from kryptokrauts/feat/1.0.10-shipreader-config… #15

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}