Skip to content

feat: Use Node.js 20 in action (#240) #95

feat: Use Node.js 20 in action (#240)

feat: Use Node.js 20 in action (#240) #95

Workflow file for this run

name: 'Release'
on:
push:
branches:
- main
permissions:
contents: write
deployments: write
issues: write
pull-requests: write
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: yarn install
- run: yarn build
- run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}