Skip to content

Commit

Permalink
test(ci): test alternate ci/cd workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-h1 committed Mar 3, 2025
1 parent 3e8626b commit 22b1318
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/eas-deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: React Native CI/CD

on:
push:
branches: [main, master, develop]
Expand Down Expand Up @@ -83,24 +82,18 @@ jobs:
# Build with increased memory limit
export NODE_OPTIONS="--openssl-legacy-provider --max_old_space_size=4096"
eas build --platform android --profile development --local --non-interactive --output=./app-dev.apk
env:
NODE_ENV: development
- name: 📱 Build Production APK
if: github.event.inputs.buildType == 'all' || github.event.inputs.buildType == 'prod-apk' || github.event_name == 'push'
run: |
export NODE_OPTIONS="--openssl-legacy-provider --max_old_space_size=4096"
eas build --platform android --profile production --local --non-interactive --output=./app-prod.apk
env:
NODE_ENV: production
- name: 📱 Build Production AAB
if: github.event.inputs.buildType == 'all' || github.event.inputs.buildType == 'prod-aab' || github.event_name == 'push'
run: |
export NODE_OPTIONS="--openssl-legacy-provider --max_old_space_size=4096"
eas build --platform android --profile production --local --non-interactive --output=./app-prod.aab
env:
NODE_ENV: production
# - name: 🏗 Setup rclone
# uses: AnimMouse/setup-rclone@v1
Expand Down

0 comments on commit 22b1318

Please sign in to comment.