Files
claude-hud/.github/workflows/release.yml
Jarrod Watts ff79ceba89 opensourcify
2026-01-03 19:07:42 +11:00

25 lines
475 B
YAML

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run test:coverage
- name: Create release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true