1
Some checks failed
Build Multi-Platform Binaries / build (push) Failing after 10m26s

This commit is contained in:
Flik
2025-12-26 19:34:17 +08:00
parent 0b51e0e3cf
commit d66934e790

View File

@@ -6,6 +6,7 @@ on:
- '**.go' - '**.go'
- 'go.mod' - 'go.mod'
- 'go.sum' - 'go.sum'
- 'web/**'
- '.gitea/workflows/**' - '.gitea/workflows/**'
jobs: jobs:
@@ -21,6 +22,19 @@ jobs:
go-version: '1.24' go-version: '1.24'
cache: true cache: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: web/package-lock.json
- name: Build Frontend
run: |
cd web
npm ci
npm run build
- name: Install UPX - name: Install UPX
run: | run: |
sudo apt-get update sudo apt-get update