Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 5e8ecb7

Browse files
committed
fix: update build workflow to remove local flag and ensure non-interactive mode for APK download
1 parent 00a2673 commit 5e8ecb7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,11 @@ jobs:
4949
token: ${{ secrets.EXPO_TOKEN }}
5050

5151
- name: 🚀 Build app
52-
# run: eas build --platform android --profile production --local --output ${{ github.workspace }}/app-release.apk
5352
run: eas build --platform android --profile production --non-interactive --wait
5453

5554
- name: 🔽 Download APK
5655
run: |
57-
BUILD_URL=$(eas build:list --status=finished --limit=1 --json | jq -r '.[0].artifacts.buildUrl')
56+
BUILD_URL=$(eas build:list --status=finished --limit=1 --json --non-interactive | jq -r '.[0].artifacts.buildUrl')
5857
echo "Downloading from $BUILD_URL"
5958
curl -o ${{ github.workspace }}/app-release.apk "$BUILD_URL"
6059

0 commit comments

Comments
 (0)