Skip to content

build: clean up dependencies #2 #3

build: clean up dependencies #2

build: clean up dependencies #2 #3

Workflow file for this run

name: Release
on:
push:
branches:
- main
- canary
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm install
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}