feat(workflow): give github pat to build script

This commit is contained in:
Pihkaal
2024-09-12 17:52:22 +02:00
parent a2c11561bf
commit 04aa2e98ab

View File

@@ -23,10 +23,13 @@ jobs:
npm install -g pnpm
- name: Install dependencies
run: pnpm install
run: |
pnpm install
- name: Build project
run: pnpm build
run: |
GH_PAT=${{ secrets.GH_PAT }} \
pnpm build
- name: Deploy to S3
run: |