From 2793beab6f730ab5b88e7a5e592aa8133cb21c50 Mon Sep 17 00:00:00 2001 From: Jed Fox <git@jedfox.com> Date: Mon, 6 Mar 2023 16:57:50 -0500 Subject: [PATCH] Create an artifact with the built web UI for each commit (#729) Part of fixing the horrendously slow Docker build for the server edge images. --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17fb2d3e9..28395ac48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,11 @@ jobs: uses: ./.github/actions/setup - name: Build Web run: ./bin/package-browser + - name: Upload Build + uses: actions/upload-artifact@v3 + with: + name: actual-web + path: packages/desktop-client/build # TODO: re-enable after solving https://github.com/actualbudget/actual/issues/468 # electron: -- GitLab