Skip to content

build: clean up package.jsong #15

build: clean up package.jsong

build: clean up package.jsong #15

Workflow file for this run

name: Release
on:
push:
branches: [main, next]
jobs:
release:
name: Release
runs-on: ubuntu-latest
concurrency:
group: deploy-${{github.ref}}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-node@v4
with:
node-version: latest
registry-url: "https://registry.npmjs.org"
cache: "npm"
- run: npx autorel@next
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}