From b2fc852e09dd3c901b2493b64a48b3348e4bfc3d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 27 Feb 2022 17:26:59 +0000 Subject: [PATCH] Update bobheadxi/deployments action to v1 (#1884) * Update bobheadxi/deployments action to v1 Signed-off-by: Renovate Bot * Migrate deploy action Signed-off-by: Tilman Vatteroth Co-authored-by: Renovate Bot Co-authored-by: Tilman Vatteroth --- .github/workflows/deploy-main.yml | 8 ++++---- .github/workflows/deploy-pr.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml index 49eb602f5..024813acf 100644 --- a/.github/workflows/deploy-main.yml +++ b/.github/workflows/deploy-main.yml @@ -44,13 +44,13 @@ jobs: run: rm -r .next/cache - name: Mark GitHub deployment as started - uses: bobheadxi/deployments@v0.6.2 + uses: bobheadxi/deployments@v1.0.1 id: github-deployment with: step: start token: ${{ secrets.GITHUB_TOKEN }} env: "Latest main" - no_override: false + override: true ref: ${{ github.ref }} - name: Run netlify CLI deployment @@ -61,7 +61,7 @@ jobs: - name: Mark GitHub deployment as finished if: always() - uses: bobheadxi/deployments@v0.6.2 + uses: bobheadxi/deployments@v1.0.1 with: step: finish token: ${{ secrets.GITHUB_TOKEN }} @@ -69,4 +69,4 @@ jobs: logs: ${{ steps.netlify-result.outputs.logs }} status: ${{ job.status }} deployment_id: ${{ steps.github-deployment.outputs.deployment_id }} - no_override: false + override: true diff --git a/.github/workflows/deploy-pr.yml b/.github/workflows/deploy-pr.yml index 2af0321bd..ffcb64c84 100644 --- a/.github/workflows/deploy-pr.yml +++ b/.github/workflows/deploy-pr.yml @@ -44,13 +44,13 @@ jobs: run: rm -r .next/cache - name: Mark GitHub deployment as started - uses: bobheadxi/deployments@v0.6.2 + uses: bobheadxi/deployments@v1.0.1 id: github-deployment with: step: start token: ${{ secrets.GITHUB_TOKEN }} env: "PR #${{ github.event.number }}" - no_override: false + override: true ref: ${{ github.head_ref }} - name: Run netlify CLI deployment @@ -61,7 +61,7 @@ jobs: - name: Mark GitHub deployment as finished if: always() - uses: bobheadxi/deployments@v0.6.2 + uses: bobheadxi/deployments@v1.0.1 with: step: finish token: ${{ secrets.GITHUB_TOKEN }} @@ -69,4 +69,4 @@ jobs: logs: ${{ steps.netlify-result.outputs.logs }} status: ${{ job.status }} deployment_id: ${{ steps.github-deployment.outputs.deployment_id }} - no_override: false + override: true