From 38b67f290b7df045e2ace3a99fb9b9a4d4a6d5e2 Mon Sep 17 00:00:00 2001 From: Alec Ananian <1013230+alecananian@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:35:20 -0700 Subject: [PATCH] fix release step of deploy workflow --- .github/workflows/deploy-api.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-api.yml b/.github/workflows/deploy-api.yml index 0aa810e7..9bde23fa 100644 --- a/.github/workflows/deploy-api.yml +++ b/.github/workflows/deploy-api.yml @@ -71,7 +71,9 @@ jobs: - name: Install dependencies run: npm ci - name: Build packages - run: npm run build:core + run: | + npm run build:auth + npm run build:core - name: Build code run: npm run build:api - name: Create Sentry release