Improve submission user icon layout #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build App | |
on: [push] | |
jobs: | |
Build-App: | |
runs-on: macos-12 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Update Secrets | |
env: | |
BUNDLE_ID: ${{ secrets.BUNDLE_ID }} | |
run: | | |
sed -i "" "s/PRODUCT_BUNDLE_IDENTIFIER = com.example.id1234;/PRODUCT_BUNDLE_IDENTIFIER = ${BUNDLE_ID};/" "FurAffinity.xcodeproj/project.pbxproj" | |
- uses: mxcl/xcodebuild@v1 | |
with: | |
action: none | |
xcode: 14.2 | |
- name: Build App | |
run: | | |
xcodebuild -disableAutomaticPackageResolution -scheme FurAffinity -destination 'platform=iOS Simulator,name=iPhone 13' -configuration Release build | |
- name: Run Tests | |
run: | | |
git_hash=$(git rev-parse --short "$GITHUB_SHA") | |
qualified_app_name="FurAffinity-${GITHUB_REF_NAME}-${git_hash}" | |
results_path=$(pwd)/${qualified_app_name}.xcresult | |
xcodebuild -disableAutomaticPackageResolution -scheme FurAffinity -destination 'platform=iOS Simulator,name=iPhone 13' -resultBundlePath "${results_path}" test | |
zip -r "${qualified_app_name}.xcresult.zip" "${qualified_app_name}.xcresult" | |
- name: Upload Tests Results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Xcode Test Results | |
path: ./*.xcresult | |
if-no-files-found: error |