Skip to content

Commit d60f5fb

Browse files
committed
feat: add -archive=tgz to deploy-vercel
1 parent c48d48f commit d60f5fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/vercel-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
4848

4949
- name: Build Project Artifacts
50-
run: vercel build ${{ inputs.prodFlag }} --token=${{ secrets.VERCEL_TOKEN }}
50+
run: vercel build ${{ inputs.prodFlag }} --archive=tgz --token=${{ secrets.VERCEL_TOKEN }}
5151
env:
5252
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
5353
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
5454

5555
- name: Deploy Project Artifacts
56-
run: vercel deploy --prebuilt ${{ inputs.prodFlag }} --token=${{ secrets.VERCEL_TOKEN }}
56+
run: vercel deploy --prebuilt ${{ inputs.prodFlag }} --archive=tgz --token=${{ secrets.VERCEL_TOKEN }}
5757
env:
5858
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
5959
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}

0 commit comments

Comments
 (0)