Skip to content

Commit

Permalink
chore: Update Docker Image CI workflow to include PNPM installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
faridvatani committed Jul 21, 2024
1 parent e7fcf7a commit 0d93070
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: "6.32.9"

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"

- name: Install PNPM
run: |
npm install -g pnpm
export PATH="$(npm bin -g):$PATH"
echo "::add-path::$(npm bin -g)"
- name: Setup Pages
uses: actions/configure-pages@v5
with:
Expand All @@ -58,7 +57,7 @@ jobs:
NEON_DATABASE_URL: ${{ secrets.NEON_DATABASE_URL }}
NEXT_PUBLIC_APP_URL: ${{ env.NEXT_PUBLIC_APP_URL }}

- name: Upload artifact
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: .next
Expand Down

0 comments on commit 0d93070

Please sign in to comment.