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" 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 }} 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