Skip to content

ci: config release workflow #1

ci: config release workflow

ci: config release workflow #1

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: '16'
- run: npm ci
- run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}