-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (65 loc) · 2.6 KB
/
previews-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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Cleanup Native UI Previews
on:
push:
branches:
- main
paths:
- 'packages/native-ui/**'
- 'apps/native-ui-storybook/**'
jobs:
cleanup:
name: Cleanup Previews
runs-on: ubuntu-latest
continue-on-error: true
if: ${{ github.event.before && github.head_commit.author.username != 'github-actions[bot]'}}
steps:
- name: 🔧 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: 📂 Checkout code
uses: actions/checkout@v3
- name: 🔧 Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: 🔄 Restore .env for Android
id: android_env
working-directory: ./apps/native-ui-storybook
run: |
GITHUB_PAT_TOKEN=${{ secrets.DS_ACTION_READ_PAT }} ARTIFACT_NAME=${{ github.event.before }}-env-android node ./scripts/getArtifacts.js || echo "No Android .env file found"
- name: 🧽 Load Android .env file and Cleanup Preview
run: |
if [ -f "./apps/native-ui-storybook/.env.android" ]; then
# Load .env file
echo "Loading Android .env file..."
# Assuming you have a script or command to load the .env file
source ./apps/native-ui-storybook/.env.android
# Cleanup Android preview
curl -X DELETE https://${{ secrets.APPETIZE_API_TOKEN }}@api.appetize.io/v1/apps/${ANDROID_API_KEY}
else
echo "No Android .env file found, skipping cleanup."
fi
- name: 🔄 Restore .env for iOS
id: ios_env
working-directory: ./apps/native-ui-storybook
run: |
GITHUB_PAT_TOKEN=${{ secrets.DS_ACTION_READ_PAT }} ARTIFACT_NAME=${{ github.event.before }}-env-ios node ./scripts/getArtifacts.js || echo "No iOS .env file found"
- name: 🧽 Load iOS .env file and Cleanup Preview
run: |
if [ -f "./apps/native-ui-storybook/.env.ios" ]; then
# Load .env file
echo "Loading iOS .env file..."
# Assuming you have a script or command to load the .env file
source ./apps/native-ui-storybook/.env.ios
# Cleanup iOS preview
curl -X DELETE https://${{ secrets.APPETIZE_API_TOKEN }}@api.appetize.io/v1/apps/${IOS_API_KEY}
else
echo "No iOS .env file found, skipping cleanup."
fi