Skip to content

Commit

Permalink
Remove exclamation breaking stuff - OMG
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmaguire committed Jan 31, 2024
1 parent 492ff35 commit effb934
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 @@ -97,7 +97,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 1 }
find . | xargs strings &>/dev/null | grep -F "${TOKEN}" &>/dev/null && { echo "Token found in iOS build" ; exit 1 }
- name: Collect iOS artifacts
uses: actions/upload-artifact@v3
Expand All @@ -118,7 +118,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 &>/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 effb934

Please sign in to comment.