Skip to content

build(deps-dev): bump vite from 2.9.17 to 2.9.18 #86

build(deps-dev): bump vite from 2.9.17 to 2.9.18

build(deps-dev): bump vite from 2.9.17 to 2.9.18 #86

Workflow file for this run

name: release
"on":
push:
branches:
- master
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.GR2M_RELEASER_GITHUB_APP_ID }}
private-key: ${{ secrets.GR2M_RELEASER_GITHUB_APP_PRIVATE_KEY }}
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
node-version: lts/*
- run: npm install --no-save @semantic-release/git semantic-release-plugin-github-breaking-version-tag
- run: npx semantic-release --debug
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}