-
Notifications
You must be signed in to change notification settings - Fork 51
52 lines (43 loc) · 1.18 KB
/
delete-slot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: "Delete slot on staging site"
on:
pull_request:
types: [closed]
concurrency:
group: ci-${{ github.event.number }}
cancel-in-progress: true
env:
WEBAPP_NAME: antares-blog-staging
RESOURCE_GROUP: appserviceblogsite
SLOT_NAME: pr-${{ github.event.number }}
#OIDC
permissions:
id-token: write
contents: read
jobs:
delete-slot:
runs-on: ubuntu-latest
steps:
#OIDC
- name: Run Azure Login with OIDC
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Delete slot on staging site
run: |
az webapp deployment slot delete \
--resource-group $RESOURCE_GROUP \
--name $WEBAPP_NAME \
--slot $SLOT_NAME
delete-deployment:
runs-on: ubuntu-latest
permissions:
deployments: write
steps:
- name: Delete Deployment Environment
uses: strumwolf/delete-deployment-environment@v2.0.1
with:
environment: "PR #${{ github.event.number }}"
token: ${{ github.token }}
onlyRemoveDeployments: true