From c1cdd0f8bd7840bd844d5d07dc688175441e7456 Mon Sep 17 00:00:00 2001 From: Simon Mueller Date: Mon, 16 Mar 2026 10:59:27 +0100 Subject: [PATCH 1/3] Fix buildXC input argument name --- .github/workflows/build-xc-matrix-entry.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-xc-matrix-entry.yml b/.github/workflows/build-xc-matrix-entry.yml index 22f78c8..ccfa1c4 100644 --- a/.github/workflows/build-xc-matrix-entry.yml +++ b/.github/workflows/build-xc-matrix-entry.yml @@ -44,12 +44,12 @@ jobs: uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }}-debug.xcframework - path: ${{ inputs.name }}/build/XCFrameworks/debug/ + path: ${{ inputs.module }}/build/XCFrameworks/debug/ if-no-files-found: error - name: Upload release XCFramework uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }}-release.xcframework - path: ${{ inputs.name }}/build/XCFrameworks/release/ + path: ${{ inputs.module }}/build/XCFrameworks/release/ if-no-files-found: error From 4d4ce32d706b61693b70fcdd537ba304a6b410e8 Mon Sep 17 00:00:00 2001 From: Simon Mueller Date: Mon, 16 Mar 2026 11:11:21 +0100 Subject: [PATCH 2/3] Fix common-setup default to string --- .github/actions/common-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml index a59a7b9..b552570 100644 --- a/.github/actions/common-setup/action.yml +++ b/.github/actions/common-setup/action.yml @@ -13,7 +13,7 @@ inputs: setup-xcode: description: "Setup XCode version" required: false - default: false + default: "false" runs: using: "composite" From bf5b9f1fd70e10d5dc8c5abcc5b3814535212a57 Mon Sep 17 00:00:00 2001 From: Simon Mueller Date: Mon, 16 Mar 2026 15:48:16 +0100 Subject: [PATCH 3/3] Fix buildJar input argument name --- .github/workflows/build-everything.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-everything.yml b/.github/workflows/build-everything.yml index 5da49ed..5a7beed 100644 --- a/.github/workflows/build-everything.yml +++ b/.github/workflows/build-everything.yml @@ -40,8 +40,8 @@ jobs: uses: a-sit-plus/internal-workflows/.github/workflows/build-jar-matrix-entry.yml@feature/modularTests with: module: ${{ matrix.module }} - kotlin-version: ${{ inputs.kotlinVersion }} - testballoon-version: ${{ inputs.testballoonVersion }} + kotlin-version: ${{ inputs.kotlin-version }} + testballoon-version: ${{ inputs.testballoon-version }} build-xc: name: Build XCFramework - ${{ matrix.module }} @@ -53,5 +53,5 @@ jobs: with: module: ${{ matrix.module }} artifact-name: ${{ matrix.artifactName }} - kotlin-version: ${{ inputs.kotlinVersion }} - testballoon-version: ${{ inputs.testballoonVersion }} + kotlin-version: ${{ inputs.kotlin-version }} + testballoon-version: ${{ inputs.testballoon-version }}