Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ParzivalEugene committed Aug 26, 2024
1 parent b20d191 commit 5556094
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
DEPLOYMENT_ID=$(gh api /repos/ParzivalEugene/michkoff-links/deployments | jq -r '.[0].id')
env:
DEPLOYMENT_ID: ${{ steps.create.outputs.DEPLOYMENT_ID }}
Expand Down

0 comments on commit 5556094

Please sign in to comment.