From 0c4bed88e30ccdfe3e0487ed07400317c32b42da Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Mar 2023 20:25:48 -0700 Subject: [PATCH] workflow fix --- .github/workflows/vercel-scheduled-build.yaml | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/vercel-scheduled-build.yaml b/.github/workflows/vercel-scheduled-build.yaml index d03bb6af..e61ed037 100644 --- a/.github/workflows/vercel-scheduled-build.yaml +++ b/.github/workflows/vercel-scheduled-build.yaml @@ -7,15 +7,14 @@ on: - cron: '0 * * * *' jobs: cron: - Deploy-Production: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install Vercel CLI - run: npm install --global vercel@latest - - name: Pull Vercel Environment Information - run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - - name: Build Project Artifacts - run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} - - name: Deploy Project Artifacts to Vercel - run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} \ No newline at end of file + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install Vercel CLI + run: npm install --global vercel@latest + - name: Pull Vercel Environment Information + run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} + - name: Build Project Artifacts + run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} + - name: Deploy Project Artifacts to Vercel + run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} \ No newline at end of file