a8dda20a30
* fix(desktop): rotate electron and backend logs * refactor(desktop): centralize log rotation defaults and debug fs errors * fix(desktop): harden rotation fs ops and buffer backend log writes * refactor(desktop): extract buffered logger and reduce sync stat calls * refactor(desktop): simplify rotation flow and harden logger config * fix(desktop): make app logging async and flush-safe * fix: harden app log path switching and debug-gated rotation errors * fix: cap buffered log chunk size during path switch * fix: avoid redundant plugin reinstall and upgrade electron * fix: stop webchat tasks cleanly and bind packaged backend to localhost * fix: unify platform shutdown and await webchat listener cleanup * fix: improve startup logs for dashboard and onebot listeners * fix: revert extra startup service logs * fix: harden plugin import recovery and webchat listener cleanup * fix: pin dashboard ci node version to 24.13.0 * fix: avoid duplicate webchat listener cleanup on terminate * refactor: clarify platform task lifecycle management * fix: continue platform shutdown when terminate fails
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
name: AstrBot Dashboard CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '24.13.0'
|
|
|
|
- name: npm install, build
|
|
run: |
|
|
cd dashboard
|
|
npm install pnpm -g
|
|
pnpm install
|
|
pnpm i --save-dev @types/markdown-it
|
|
pnpm run build
|
|
|
|
- name: Inject Commit SHA
|
|
id: get_sha
|
|
run: |
|
|
echo "COMMIT_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
|
|
mkdir -p dashboard/dist/assets
|
|
echo $COMMIT_SHA > dashboard/dist/assets/version
|
|
cd dashboard
|
|
zip -r dist.zip dist
|
|
|
|
- name: Archive production artifacts
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: dist-without-markdown
|
|
path: |
|
|
dashboard/dist
|
|
!dist/**/*.md
|
|
|
|
- name: Create GitHub Release
|
|
if: github.event_name == 'push'
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
tag: release-${{ github.sha }}
|
|
owner: AstrBotDevs
|
|
repo: astrbot-release-harbour
|
|
body: "Automated release from commit ${{ github.sha }}"
|
|
token: ${{ secrets.ASTRBOT_HARBOUR_TOKEN }}
|
|
artifacts: "dashboard/dist.zip"
|