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 8874c09 commit 3e8626b
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/eas-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,22 @@ jobs:
echo "EAS CLI version:"
eas --version
# - name: 📱 Build Development APK
# if: github.event.inputs.buildType == 'all' || github.event.inputs.buildType == 'dev' || github.event_name == 'push'
# run: |
# # 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 Development APK
if: github.event.inputs.buildType == 'all' || github.event.inputs.buildType == 'dev' || github.event_name == 'push'
run: |
# 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 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'
Expand Down

0 comments on commit 3e8626b

Please sign in to comment.