From c0c07e8c0903f8fc9353f5ccccdc6c4a290a70f4 Mon Sep 17 00:00:00 2001 From: Vadorequest Date: Mon, 4 Jan 2021 18:33:00 +0100 Subject: [PATCH] Fix "await-for-vercel-deployment" step (#237) --- .github/workflows/deploy-vercel-production.yml | 1 + .github/workflows/deploy-vercel-staging.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/deploy-vercel-production.yml b/.github/workflows/deploy-vercel-production.yml index 20e155fe5..58d95137d 100644 --- a/.github/workflows/deploy-vercel-production.yml +++ b/.github/workflows/deploy-vercel-production.yml @@ -123,6 +123,7 @@ jobs: runs-on: ubuntu-18.04 needs: start-production-deployment steps: + - uses: actions/checkout@v1 # Get last commit pushed - See https://github.com/actions/checkout - name: Resolving deployment url from Vercel # Workflow overview: # - Resolve customer to deploy from github event input (falls back to resolving it from vercel.json file) diff --git a/.github/workflows/deploy-vercel-staging.yml b/.github/workflows/deploy-vercel-staging.yml index afd4e4545..47c10a46a 100644 --- a/.github/workflows/deploy-vercel-staging.yml +++ b/.github/workflows/deploy-vercel-staging.yml @@ -200,6 +200,7 @@ jobs: runs-on: ubuntu-18.04 needs: start-staging-deployment steps: + - uses: actions/checkout@v1 # Get last commit pushed - See https://github.com/actions/checkout - name: Resolving deployment url from Vercel # Workflow overview: # - Resolve customer to deploy from github event input (falls back to resolving it from vercel.json file)