From ad486dc4c495ba37baf4787cf477a54affba1ea1 Mon Sep 17 00:00:00 2001 From: Cal Stephens Date: Mon, 22 Jan 2024 11:43:33 -0800 Subject: [PATCH] Fix issue where Example app build ignored Xcode version options --- .github/actions/setup/action.yml | 2 +- .github/workflows/main.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 428b4cd..f9de8ee 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -1,5 +1,5 @@ name: Setup -description: Setup the Lottie iOS CI Environment +description: Setup the Lottie SPM CI Environment inputs: xcode: description: The version of Xcode to select diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 738cf51..2d91ab2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,6 +56,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/actions/setup + with: + xcode: ${{ matrix.xcode }} - name: Build Example run: SKIP_VISION_OS=true bundle exec rake build:example:github_actions @@ -70,5 +72,7 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/actions/setup + with: + xcode: ${{ matrix.xcode }} - name: Build Example run: bundle exec rake build:example:github_actions