Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ jobs:
cmd: ./cmd/server
prefix: workflow
platforms: linux/amd64 linux/arm64 darwin/amd64 darwin/arm64 windows/amd64
build_ui: true
- name: wfctl
cmd: ./cmd/wfctl
prefix: wfctl
Expand All @@ -188,6 +189,7 @@ jobs:
cache: true

- name: Set up Node.js
if: matrix.build_ui
uses: actions/setup-node@v4
with:
node-version: '20'
Expand All @@ -196,6 +198,7 @@ jobs:
cache-dependency-path: ui/package-lock.json

- name: Build UI assets (required for Go embed)
if: matrix.build_ui
run: |
cd ui && npm ci && npm run build
cd .. && mkdir -p module/ui_dist && cp -r ui/dist/* module/ui_dist/
Expand Down
Loading