From 5f0f018fdaa5223a5494308eb6d11fd59161ade0 Mon Sep 17 00:00:00 2001 From: Ruben Vitt Date: Sat, 12 Oct 2024 10:32:01 +0200 Subject: [PATCH] chore(workflows): update release workflow - Adjusted spacing in 'needs' array for consistency. - Added step to install dependencies using pnpm. --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da289cf..e93dd00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -135,7 +135,7 @@ jobs: release: name: Create Release - needs: [build-backend, build-frontend] + needs: [ build-backend, build-frontend ] runs-on: ubuntu-latest steps: - name: Checkout @@ -151,6 +151,9 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v2 + - name: Install dependencies + run: pnpm install + - name: Download Backend Image Tags uses: actions/download-artifact@v3 with: