update workflow to update web app bundle correctly
Some checks failed
Go / build-and-release (push) Has been cancelled

This commit is contained in:
2025-11-25 15:41:01 +00:00
parent a03af8e05a
commit 655a7d9473
2 changed files with 22 additions and 1 deletions

View File

@@ -43,6 +43,27 @@ jobs:
export PATH=/usr/local/go/bin:$PATH
go version
- name: Set up Bun
run: |
echo "Installing Bun..."
curl -fsSL https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
bun --version
- name: Build Web UI
run: |
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
cd ${GITHUB_WORKSPACE}/app/web
echo "Installing frontend dependencies..."
bun install
echo "Building web app..."
bun run build
echo "Verifying dist directory was created..."
ls -lah dist/
echo "Web UI build complete"
- name: Build (Pure Go + purego)
run: |
export PATH=/usr/local/go/bin:$PATH

View File

@@ -1 +1 @@
v0.29.19
v0.29.20