From 60191e7b0008f084b44434b6a3e355bbfa7d375c Mon Sep 17 00:00:00 2001 From: Sarah Riehl Date: Mon, 8 Jan 2024 12:29:16 -0600 Subject: [PATCH] SELFDEV-415: [repo] deploy.yml, fix deploy cache undefined error (#20) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [SELFDEV-415] ## What changed? * Specify that the site should build using a fresh copy of the docs, not a cached version ## Release notes draft * ## Anything else? ping {names} [SELFDEV-415]: https://bigcommercecloud.atlassian.net/browse/SELFDEV-415?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ --- .github/workflows/deploy.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9c93afdc7..23f81b59b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,12 +5,6 @@ on: branches: - main workflow_dispatch: - inputs: - buildWithCache: - description: 'Build with cache' - default: true - required: false - type: boolean jobs: build: @@ -22,4 +16,4 @@ jobs: - name: Trigger Vercel Deploy Hook run: | - curl -X POST ${{ secrets.VERCEL_DEPLOY_HOOK_URL }}?buildCache=${{ inputs.buildWithCache }} + curl -X POST ${{ secrets.VERCEL_DEPLOY_HOOK_URL }}?buildCache=false