Skip to content

Commit

Permalink
chore(workflows): update release workflow
Browse files Browse the repository at this point in the history
- Adjusted spacing in 'needs' array for consistency.
- Added step to install dependencies using pnpm.
  • Loading branch information
rubenvitt committed Oct 12, 2024
1 parent 13d9fd1 commit 5f0f018
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 5f0f018

Please sign in to comment.