This commit is contained in:
2025-12-02 05:02:21 -08:00
parent 4361f29319
commit f89280f292
11 changed files with 384 additions and 129 deletions
+34
View File
@@ -0,0 +1,34 @@
name: Build and Release
on:
push:
tags:
- "*"
workflow_dispatch:
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: latest
- name: Build
run: |
npm install
npm run compile
git log $(git describe --tags --abbrev=0 HEAD~1)..HEAD --oneline > changelog.txt
- name: Release
uses: softprops/action-gh-release@v2
with:
make_latest: true
body_path: changelog.txt
files: bin/*/*