workflow fix
This commit is contained in:
parent
83e185aded
commit
07b3ce44cf
1 changed files with 13 additions and 12 deletions
25
.github/workflows/vercel-scheduled-build.yaml
vendored
25
.github/workflows/vercel-scheduled-build.yaml
vendored
|
@ -6,15 +6,16 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 * * * *'
|
- cron: '0 * * * *'
|
||||||
jobs:
|
jobs:
|
||||||
Deploy-Production:
|
cron:
|
||||||
runs-on: ubuntu-latest
|
Deploy-Production:
|
||||||
steps:
|
runs-on: ubuntu-latest
|
||||||
- uses: actions/checkout@v2
|
steps:
|
||||||
- name: Install Vercel CLI
|
- uses: actions/checkout@v2
|
||||||
run: npm install --global vercel@latest
|
- name: Install Vercel CLI
|
||||||
- name: Pull Vercel Environment Information
|
run: npm install --global vercel@latest
|
||||||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
- name: Pull Vercel Environment Information
|
||||||
- name: Build Project Artifacts
|
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
- name: Build Project Artifacts
|
||||||
- name: Deploy Project Artifacts to Vercel
|
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
|
- name: Deploy Project Artifacts to Vercel
|
||||||
|
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
|
Reference in a new issue