Skip to content

Commit

Permalink
chore: Build Cleanup (#1451)
Browse files Browse the repository at this point in the history
Removed multi-step usage in favor of faster builds without additional setup
Removed scheduled jobs to match current release processes
  • Loading branch information
alexrisch authored Jan 3, 2025
1 parent ebcac5a commit 640a2f1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 70 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ permissions:
pull-requests: write

on:
schedule:
# These will run only on the default branch
# These numbers will likely change when we move to EAS Update
- cron: "0 18 * * 2" # Tuesdays at 11 AM PT
- cron: "0 21 * * 4" # Thursdays at 2 PM PT
# Removed to match our current release schedule
# schedule:
# # These will run only on the default branch
# # These numbers will likely change when we move to EAS Update
# - cron: "0 18 * * 2" # Tuesdays at 11 AM PT
# - cron: "0 21 * * 4" # Thursdays at 2 PM PT
workflow_dispatch:

jobs:
Expand Down
94 changes: 29 additions & 65 deletions .github/workflows/build-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,62 +17,18 @@ on:
- Production
- Preview

jobs:
build-android:
runs-on: ubuntu-latest
environment: ${{ github.event.inputs.environment || 'Production' }}
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20.18.0

- name: Install dependencies
run: yarn install

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}

- name: Create .env file from secrets
run: |
if [ "${{ github.event.inputs.environment || 'Production' }}" == "Production" ]; then
env_file=".env.production"
else
env_file=".env"
fi
echo "EXPO_PUBLIC_CONTACT_ADDRESS=${{ secrets.EXPO_PUBLIC_CONTACT_ADDRESS }}" >> $env_file
echo "EXPO_PUBLIC_DEBUG_ADDRESSES=${{ secrets.EXPO_PUBLIC_DEBUG_ADDRESSES }}" >> $env_file
echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.EXPO_PUBLIC_SENTRY_DSN }}" >> $env_file
echo "EXPO_PUBLIC_WALLETCONNECT_PROJECT_ID=${{ secrets.EXPO_PUBLIC_WALLETCONNECT_PROJECT_ID }}" >> $env_file
echo "EXPO_PUBLIC_THIRDWEB_CLIENT_ID=${{ secrets.EXPO_PUBLIC_THIRDWEB_CLIENT_ID }}" >> $env_file
echo "EXPO_PUBLIC_EXPO_PROJECT_ID=${{ secrets.EXPO_PUBLIC_EXPO_PROJECT_ID }}" >> $env_file
echo "EXPO_PUBLIC_PRIVY_APP_ID=${{ secrets.EXPO_PUBLIC_PRIVY_APP_ID }}" >> $env_file
echo "EXPO_PUBLIC_EVM_RPC_ENDPOINT=${{ secrets.EXPO_PUBLIC_EVM_RPC_ENDPOINT }}" >> $env_file
echo "SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}" >> $env_file
- name: Update EAS config with env variables
run: |
if [ "${{ github.event.inputs.environment || 'Production' }}" == "Production" ]; then
node scripts/build/eas.js --env production
else
node scripts/build/eas.js --env preview
fi
- name: Build for Android
run: |
if [ "${{ github.event.inputs.environment || 'Production' }}" == "Production" ]; then
eas build --profile production-android --platform android --non-interactive --auto-submit --no-wait
else
eas build --profile preview-android --platform android --non-interactive --auto-submit --no-wait
fi
platform:
description: "Select the platform"
required: false
default: "all"
type: choice
options:
- all
- ios
- android

build-ios:
jobs:
build-with-eas:
runs-on: ubuntu-latest
environment: ${{ github.event.inputs.environment || 'Production' }}

Expand Down Expand Up @@ -130,23 +86,31 @@ jobs:
- name: Build for iOS
run: |
# Check if platform is android, if so return success without building
if [ "${{ github.event.inputs.platform || 'all' }}" == "android" ]; then
echo "Skipping iOS build for Android"
exit 0
fi
if [ "${{ github.event.inputs.environment || 'Production' }}" == "Production" ]; then
eas build --profile production --platform ios --non-interactive --auto-submit --no-wait
else
eas build --profile preview --platform ios --non-interactive --auto-submit --no-wait
fi
increment-build-numbers:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build for Android
run: |
# Check if platform is ios, if so return success without building
if [ "${{ github.event.inputs.platform || 'all' }}" == "ios" ]; then
echo "Skipping Android build for iOS"
exit 0
fi
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20.18.0
if [ "${{ github.event.inputs.environment || 'Production' }}" == "Production" ]; then
eas build --profile production-android --platform android --non-interactive --auto-submit --no-wait
else
eas build --profile preview-android --platform android --non-interactive --auto-submit --no-wait
fi
- name: Increment version numbers
run: node scripts/build/incrementBuildNumbers.js
Expand Down

0 comments on commit 640a2f1

Please sign in to comment.