Skip to content

Commit 81322c1

Browse files
committed
Fix deploy to live workflows not going live
1 parent c534c7a commit 81322c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy-master-to-live.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
run: ./build.sh
1818

1919
- name: Deploy to Netlify
20-
run: ./deploy.sh --live
20+
run: ./deploy.sh --prod
2121
env:
2222
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

.github/workflows/deploy-preview-to-live.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
run: git push origin preview:master
2121

2222
- name: Deploy to Netlify
23-
run: ./deploy.sh --live
23+
run: ./deploy.sh --prod
2424
env:
2525
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

0 commit comments

Comments
 (0)