Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmaguire committed Jan 31, 2024
1 parent 368a6f9 commit 533c60e
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 && ( echo "Token found in iOS build" ; exit 0 )
find . | xargs strings 2>/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 && ( echo "Token found in Android build" ; exit 1 )
find . | xargs strings 2>/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 533c60e

Please sign in to comment.