Files
codeql-action/node_modules/universal-github-app-jwt/.github/workflows/release.yml
2025-02-19 11:13:12 -08:00

23 lines
459 B
YAML

"on":
push:
branches:
- "*.x"
- main
- beta
name: Release
jobs:
build:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
- run: npm run build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}