Skip to content

build(deps): lock file maintenance (#121) #225

build(deps): lock file maintenance (#121)

build(deps): lock file maintenance (#121) #225

Workflow file for this run

name: release
"on":
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run build
- run: rm .gitignore
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: >-
git push
https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
HEAD:refs/heads/v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}