Skip to content

Commit

Permalink
fix: replace npm by pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Onxi95 committed Apr 29, 2024
1 parent 5044597 commit 429e5b3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@ jobs:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Modules
run: npm ci
run: pnpm i
- name: Build App
run: npm run build
run: pnpm build
- name: Deploy to S3
run: |
aws s3 sync dist "s3://${{ secrets.BUCKET_NAME }}" \
Expand Down

0 comments on commit 429e5b3

Please sign in to comment.