Skip to content

fix: npm audit — patch postcss/undici/vite vulns #2

fix: npm audit — patch postcss/undici/vite vulns

fix: npm audit — patch postcss/undici/vite vulns #2

Workflow file for this run

name: Release
on:
push:
tags: ['v*']
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.14.0
cache: npm
- run: npm ci
- run: npm run build
- run: cp dist/index.html docker-compose-debugger.html
- uses: softprops/action-gh-release@v2
with:
files: docker-compose-debugger.html
generate_release_notes: true
prerelease: ${{ contains(github.ref, '-') }}