chore: update storybook docs with videos #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 8 | |
- name: π Checkout code | |
uses: actions/checkout@v3 | |
- name: π§ Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
- 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 |