-
Notifications
You must be signed in to change notification settings - Fork 37
59 lines (56 loc) · 1.82 KB
/
cleanup.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
name: Package Clean Up
on:
pull_request:
types: [closed]
jobs:
preview-clean-up:
name: "Clean Up Preview deployments"
runs-on: "ubuntu-latest"
permissions:
contents: write
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: preview
- name: Setup Git
run: |
git config --global user.name "xLabs Playground CI"
git config --global user.email "devops@xlabs-playground.xyz"
- name: Set Version
run: echo "_BRANCH_NAME_SHA=$(echo ${{ github.event.pull_request.head.ref }} | sha256sum | cut -c -10)" >> "${GITHUB_ENV}"
- name: Unpublish and remove preview artifacts
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run unpublish ${_BRANCH_NAME_SHA}
git add ${_BRANCH_NAME_SHA}
git commit -m"Remove preview artifacts"
git push
testnet-clean-up:
name: "Clean Up Testnet deployments"
runs-on: "ubuntu-latest"
permissions:
contents: write
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: testnet
- name: Setup Git
run: |
git config --global user.name "xLabs Playground CI"
git config --global user.email "devops@xlabs-playground.xyz"
- name: Compute Version
run: |
echo "_BRANCH_NAME_SHA=$(echo ${{ github.event.pull_request.head.ref }} | sha256sum | cut -c -10)" >> "${GITHUB_ENV}"
- name: Unpublish and remove testnet artifacts
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run unpublish ${_BRANCH_NAME_SHA}
git add ${_BRANCH_NAME_SHA}
git commit -m"Remove testnet artifacts"
git push