workflow fix

This commit is contained in:
Cory Dransfeldt 2023-03-13 20:20:27 -07:00
parent 83e185aded
commit 07b3ce44cf

View file

@ -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 }}