Skip to content

fix: drop unused workflow path input #8

fix: drop unused workflow path input

fix: drop unused workflow path input #8

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Vite+
uses: voidzero-dev/setup-vp@v1
with:
version: "0.1.19"
node-version-file: ".node-version"
cache: true
run-install: |
args: ['--frozen-lockfile']
- name: Run checks
run: vp check
- name: Run tests
run: vp test
- name: Build dist
run: vp pack
- name: Semantic release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: vp run release