Skip to content

ci: bump the Node version #24

ci: bump the Node version

ci: bump the Node version #24

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
# check out repository code and setup node
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
# install dependencies and run semantic-release
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}