Make deployment script accept pat

pull/8455/head
Kamran Ahmed 2 weeks ago
parent 7b15ed39a3
commit 7564895d7a
  1. 7
      .github/workflows/deployment.yml

@ -3,6 +3,9 @@ name: Deploy to EC2
on:
workflow_dispatch:
env:
GH_PAT: ${{ secrets.GH_PAT }}
jobs:
deploy:
runs-on: ubuntu-latest
@ -36,9 +39,11 @@ jobs:
pnpm install
- name: Generate Production Build
env:
GH_PAT: ${{ secrets.GH_PAT }}
run: |
git clone https://${{ secrets.GH_PAT }}@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1
GH_PAT=${{ secrets.GH_PAT }} npm run generate-renderer
npm run generate-renderer
npm run compress:images
npm run build

Loading…
Cancel
Save