Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/profile-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,13 @@ jobs:

- name: Build or Deploy Android app
run: |
set -e

# Load .env variables into step
set -a
source ./.env
set +a

cd android
chmod +x ./gradlew

Expand Down Expand Up @@ -641,6 +648,11 @@ jobs:

- name: Set up iOS authentication
run: |
# Load .env variables into step
set -a
source ./.env
set +a

echo "🔐 Setting up iOS authentication (required for all iOS builds)"

# Check if Apple credentials are available
Expand Down Expand Up @@ -718,6 +730,12 @@ jobs:
MATCH_S3_REGION: ${{ secrets.AWS_REGION || 'ap-southeast-1' }}
run: |
set -e

# Load .env variables into step
set -a
source ./.env
set +a

cd ios

echo "📋 Available Fastlane lanes:"
Expand Down
Loading