Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/custom-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,20 @@ jobs:
-f ${{ steps.strings.outputs.build-dir }}
-b ${{ steps.strings.outputs.build-output-dir }}

- name: Build for macOS iOS and xrOS
if: ${{ matrix.os == 'macos-latest' && (matrix.target_platform == 'macos' || matrix.target_platform == 'ios' || matrix.target_platform == 'xros') }}
- name: Build for iOS and xrOS
if: ${{ matrix.os == 'macos-latest' && (matrix.target_platform == 'ios' || matrix.target_platform == 'xros') }}
run: >
sh scripts/build.sh -p ${{ matrix.target_platform }}
-v ${{ inputs.build_version }}
-t ${{ inputs.build_type }}
-f ${{ steps.strings.outputs.build-dir }}
-b ${{ steps.strings.outputs.build-output-dir }}

- name: Build for macOS
if: ${{ matrix.os == 'macos-latest' && (matrix.target_platform == 'macos') }}
run: |
sh scripts/build.sh -p ${{ matrix.target_platform }} -v ${{ inputs.build_version }} -t ${{ inputs.build_type }} -f ${{ steps.strings.outputs.build-dir }} -b ${{ steps.strings.outputs.build-output-dir }}
sh scripts/build.sh -p ${{ matrix.target_platform }} -v ${{ inputs.build_version }} -t ${{ inputs.build_type }} -f ${{ steps.strings.outputs.build-dir }} -b ${{ steps.strings.outputs.build-output-dir }} --no-framework

# There is no need to sign frameworks
# - name: Sign macOS iOS and xrOS
Expand Down
Loading