Skip to content

chore: add Figma code connect (#424) #45

chore: add Figma code connect (#424)

chore: add Figma code connect (#424) #45

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 repo
uses: pnpm/action-setup@v4
with:
version: 8
- name: πŸ— Checkout
uses: actions/checkout@v4
- name: πŸ— Setup Node
uses: actions/setup-node@v2
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
- name: πŸ— Load Android .env file
uses: xom9ikk/dotenv@v2
with:
path: ./apps/native-ui-storybook
mode: 'android'
- name: 🧽 Cleanup Android preview
run: |
curl -X DELETE https://${{ secrets.APPETIZE_API_TOKEN }}@api.appetize.io/v1/apps/${{env.ANDROID_API_KEY}}
- 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
- name: πŸ— Load iOS .env file
uses: xom9ikk/dotenv@v2
with:
path: ./apps/native-ui-storybook
mode: 'ios'
- name: 🧽 Cleanup iOS preview
run: |
curl -X DELETE https://${{ secrets.APPETIZE_API_TOKEN }}@api.appetize.io/v1/apps/${{env.IOS_API_KEY}}