opensourcify

This commit is contained in:
Jarrod Watts
2026-01-03 19:07:42 +11:00
parent fcaa8da6d6
commit ff79ceba89
15 changed files with 227 additions and 4 deletions

24
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
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