Skip to content

build: fix github action release error #2

build: fix github action release error

build: fix github action release error #2

Workflow file for this run

name: Release
on:
push:
branches: [ main ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm ci
- run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}