Skip to content

Commit

Permalink
Test Android build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmaguire committed Jan 31, 2024
1 parent 3e1b3a8 commit 91cca0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
cp ios/MobileNebula.ipa build/app/test-ios
cd build/app/test-ios
unzip MobileNebula.ipa
find . | xargs strings &>/dev/null | grep -F "${TOKEN}" &>/dev/null && exit 1
find . | xargs strings &>/dev/null | grep -F "${TOKEN}" &>/dev/null && { echo "Token found in iOS build!" ; exit 0 }
- name: Collect iOS artifacts
uses: actions/upload-artifact@v3
Expand All @@ -117,7 +117,7 @@ jobs:
cp build/app/outputs/bundle/release/app-release.aab build/app/test-android
cd build/app/test-android
unzip app-release.aab
find . | xargs strings &>/dev/null | grep -F "${TOKEN}" &>/dev/null && exit 1
find . | xargs strings &>/dev/null | grep -F "${TOKEN}" &>/dev/null && { echo "Token found in Android build!" ; exit 1 }
- name: Collect Android artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 91cca0e

Please sign in to comment.