Skip to content

feat: add support for labels (#131) #68

feat: add support for labels (#131)

feat: add support for labels (#131) #68

Workflow file for this run

name: Release
"on":
push:
branches:
- main
- next
- beta
- "*.x"
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run build
# https://github.com/gr2m/octokit-plugin-create-pull-request/pull/127/
- name: "Fix pkg.files file pattern"
run: node scripts/fix-package-json.js
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}