Breaking Change: Updates OpenAPI version to 14.1.0, adds http status … #430
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
"on": | |
push: | |
branches: | |
- main | |
- next | |
- beta | |
- "*.x" | |
jobs: | |
release: | |
name: release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: lts/* | |
- run: npm ci | |
- run: npx semantic-release --debug | |
env: | |
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }} | |
NPM_TOKEN: ${{ secrets.OCTOKITBOT_NPM_TOKEN }} |