diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3c47847..cd8fb97 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,13 +10,19 @@ jobs: runs-on: ubuntu-latest steps: + - name: Remove old deployment + run: | + PREVIOUS_DEPLOYMENT_ID=$(gh api /repos/ParzivalEugene/michkoff-links/deployments | jq -r '.[0].id') + gh api --method DELETE /repos/ParzivalEugene/michkoff-links/deployments/${PREVIOUS_DEPLOYMENT_ID} || true + env: + GH_TOKEN: ${{ github.token }} + - name: Create new deployment run: | gh api --method POST \ -H "Accept: application/vnd.github+json" \ /repos/${{ github.repository }}/deployments \ - -f "ref=production" \ - -f "environment=production" + -f "ref=production" DEPLOYMENT_ID=$(gh api /repos/ParzivalEugene/michkoff-links/deployments | jq -r '.[0].id') env: DEPLOYMENT_ID: ${{ steps.create.outputs.DEPLOYMENT_ID }} @@ -27,7 +33,7 @@ jobs: gh api --method POST \ -H "Accept: application/vnd.github+json" \ /repos/${{ github.repository }}/deployments/${{ env.DEPLOYMENT_ID }}/statuses \ - -f "state=pending" + -f "state=pending" \ -f "auto_inactive=true" env: DEPLOYMENT_ID: ${{ steps.create.outputs.DEPLOYMENT_ID }} @@ -42,7 +48,7 @@ jobs: gh api --method POST \ -H "Accept: application/vnd.github+json" \ /repos/${{ github.repository }}/deployments/${{ env.DEPLOYMENT_ID }}/statuses \ - -f "state=success" + -f "state=success" \ -f "auto_inactive=true" env: DEPLOYMENT_ID: ${{ steps.create.outputs.DEPLOYMENT_ID }}