Skip to content

Commit

Permalink
feat(workflows): change XCode project scheme name
Browse files Browse the repository at this point in the history
  • Loading branch information
medns authored and pba-cra committed Feb 1, 2023
1 parent 041ccd8 commit 1c71440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project_artifact_compare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
xcodebuild build \
-destination 'generic/platform=iOS' \
-workspace 'Hippy.xcworkspace' \
-scheme 'hippy' \
-scheme 'HippyLibrary' \
-configuration 'Release' \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
Expand All @@ -100,7 +100,7 @@ jobs:
id: get_size
run: |
if [[ "${{ matrix.ref }}" ]]; then
echo "${{ matrix.source }}=$(ls -l $(xcodebuild -scheme 'hippy' -showBuildSettings | grep -m 1 TARGET_BUILD_DIR | grep -oEi "\/.*")/libhippy.a | awk '{print $5}')" >> $GITHUB_OUTPUT
echo "${{ matrix.source }}=$(ls -l $(xcodebuild -scheme 'HippyLibrary' -showBuildSettings | grep -m 1 TARGET_BUILD_DIR | grep -oEi "\/.*")/libhippy.a | awk '{print $5}')" >> $GITHUB_OUTPUT
else
echo "${{ matrix.source }}=-1" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit 1c71440

Please sign in to comment.