From acfd39258b2821162684698677ec046688906072 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 20 Mar 2024 10:51:15 +1100 Subject: [PATCH] Fix PUI build workflow (#6754) (#6758) * Fix PUI build workflow * Fix PUI build release workflow Co-authored-by: Lukas <76838159+wolflu05@users.noreply.github.com> --- .github/workflows/qc_checks.yaml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qc_checks.yaml b/.github/workflows/qc_checks.yaml index 4509b3783b..daf60d0d18 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -505,7 +505,7 @@ jobs: - name: Install dependencies run: cd src/frontend && yarn install - name: Build frontend - run: cd src/frontend && npm run build + run: cd src/frontend && npm run compile && npm run build - name: Zip frontend run: | cd InvenTree/web/static diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b22280b195..44b616f7c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: - name: Install dependencies run: cd src/frontend && yarn install - name: Build frontend - run: cd src/frontend && npm run build + run: cd src/frontend && npm run compile && npm run build - name: Zip frontend run: | cd InvenTree/web/static/web