update workflow to update web app bundle correctly
Some checks failed
Go / build-and-release (push) Has been cancelled
Some checks failed
Go / build-and-release (push) Has been cancelled
This commit is contained in:
@@ -43,6 +43,27 @@ jobs:
|
|||||||
export PATH=/usr/local/go/bin:$PATH
|
export PATH=/usr/local/go/bin:$PATH
|
||||||
go version
|
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)
|
- name: Build (Pure Go + purego)
|
||||||
run: |
|
run: |
|
||||||
export PATH=/usr/local/go/bin:$PATH
|
export PATH=/usr/local/go/bin:$PATH
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
v0.29.19
|
v0.29.20
|
||||||
Reference in New Issue
Block a user