Skip to content

chore: add dependabot, update contributors and disclaimer #1

chore: add dependabot, update contributors and disclaimer

chore: add dependabot, update contributors and disclaimer #1

Workflow file for this run

name: Release
on:
push:
tags: ['v*']
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
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, '-') }}