-
Notifications
You must be signed in to change notification settings - Fork 4
71 lines (61 loc) · 2.37 KB
/
clean-preview.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Clean Preview
on:
workflow_dispatch:
pull_request_target:
types: [closed]
jobs:
filter-actions:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
dialtone: ${{ steps.filter.outputs.dialtone }}
dialtone-vue-2: ${{ steps.filter.outputs.dialtone-vue-2 }}
dialtone-vue-3: ${{ steps.filter.outputs.dialtone-vue-3 }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Filter actions by path
uses: dorny/paths-filter@v2
id: filter
with:
filters: |
dialtone:
- 'apps/dialtone-documentation/**'
- 'packages/**'
dialtone-vue-2:
- 'packages/**'
dialtone-vue-3:
- 'packages/**'
clean:
needs: filter-actions
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
env:
DIALTONE_BUCKET_DIRECTORY: dialtone.dialpad.com/deploy-previews/pr-${{ github.event.pull_request.number }}/
DIALTONE_VUE_2_BUCKET_DIRECTORY: dialtone.dialpad.com/vue/deploy-previews/pr-${{ github.event.pull_request.number }}/
DIALTONE_VUE_3_BUCKET_DIRECTORY: dialtone.dialpad.com/vue3/deploy-previews/pr-${{ github.event.pull_request.number }}/
steps:
- uses: actions/checkout@v4
- id: auth
name: Authenticate to Google Cloud
uses: google-github-actions/auth@v1
with:
workload_identity_provider: ${{ secrets.DIALTONE_GCP_WIP }}
service_account: ${{ secrets.DIALTONE_GCP_SA }}
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
- name: Clean up Dialtone preview
if: ${{ needs.filter-actions.outputs.dialtone == 'true' }}
continue-on-error: true
run: gcloud storage rm --recursive ${{ format('gs://{0}', env.DIALTONE_BUCKET_DIRECTORY) }}
- name: Clean up Dialtone-vue 2 preview
if: ${{ needs.filter-actions.outputs.dialtone-vue-2 == 'true' }}
continue-on-error: true
run: gcloud storage rm --recursive ${{ format('gs://{0}', env.DIALTONE_VUE_2_BUCKET_DIRECTORY) }}
- name: Clean up Dialtone-vue 3 preview
if: ${{ needs.filter-actions.outputs.dialtone-vue-3 == 'true' }}
continue-on-error: true
run: gcloud storage rm --recursive ${{ format('gs://{0}', env.DIALTONE_VUE_3_BUCKET_DIRECTORY) }}