Skip to content

Bump version to 0.2.0 #7

Bump version to 0.2.0

Bump version to 0.2.0 #7

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*.*.*' # Triggers the workflow on version tags
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org/'
- run: corepack enable
- name: Install root project dependencies
run: yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build root project
run: yarn build
- name: Publish root project to npm
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}