Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,11 @@ jobs:
shell: bash
run: |
rm -rf web/frontend
mkdir -p web/frontend
cp -r frontend/dist web/frontend/
mkdir -p web/frontend/dist
cp -r frontend/dist/. web/frontend/dist/
# Recreate the tracked .gitkeep so //go:embed all:frontend/dist
# always has something to embed (matches the Makefile frontend-build target).
touch web/frontend/dist/.gitkeep

- name: Run tests (skip binary E2E tests - not compatible with cross-compilation)
# Skip tests for Windows ARM64 (cross-compilation - can't run ARM64 binaries on AMD64 runner)
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,11 @@ jobs:
shell: bash
run: |
rm -rf web/frontend
mkdir -p web/frontend
cp -r frontend/dist web/frontend/
mkdir -p web/frontend/dist
cp -r frontend/dist/. web/frontend/dist/
# Recreate the tracked .gitkeep so //go:embed all:frontend/dist
# always has something to embed (matches the Makefile frontend-build target).
touch web/frontend/dist/.gitkeep

- name: Import Code-Signing Certificates (macOS)
if: matrix.goos == 'darwin'
Expand Down
Loading