From 838f6818c59d9281b8f326ab2ffaca22d032ee83 Mon Sep 17 00:00:00 2001 From: Lukas <76838159+wolflu05@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:58:50 +0100 Subject: [PATCH] Fix PUI build workflow (#6754) * Fix PUI build workflow * Fix PUI build release workflow --- .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 5a7e26c352..35515cc920 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -507,7 +507,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