Skip to content

feat!: bump package version to 2.0.0 #25

feat!: bump package version to 2.0.0

feat!: bump package version to 2.0.0 #25

Workflow file for this run

# @format
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Publish CI
on:
push:
branches: ['main']
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- name: CI setup
run: yarn ci
- name: Publish to NPM
run: yarn run semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}