Skip to content

fix: try to release with previously used semantic-release version #665

fix: try to release with previously used semantic-release version

fix: try to release with previously used semantic-release version #665

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: 16
cache: npm
- run: npm ci
- run: npm run build
- run: ls pkg/
- run: ls pkg/dist-types
- run: npx semantic-release@18 --debug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.OCTOKITBOT_NPM_TOKEN }}