Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alorma authored Jan 19, 2025
1 parent 4d71593 commit 9b76792
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ jobs:
java-version: 17

- name: Build
continue-on-error: ${{ matrix.config.continueOnError }}
run: ./gradlew :ui-base:build

build-lib-ui:
Expand Down Expand Up @@ -129,11 +128,11 @@ jobs:
strategy:
matrix:
config: [
{ target: android, module: androidApp , os: ubuntu-latest, tasks: assembleDebug, continueOnError: false },
{ target: iOS, module: iosApp , os: macos-latest, tasks: compileKotlinIosArm64, continueOnError: false },
{ target: android, module: androidApp , os: ubuntu-latest, tasks: assembleDebug },
{ target: iOS, module: iosApp , os: macos-latest, tasks: compileKotlinIosArm64 },
{ target: js, module: jsApp , os: ubuntu-latest, tasks: jsBrowserDistribution, continueOnError: false },
{ target: wasm, module: wasmApp , os: ubuntu-latest, tasks: wasmJsBrowserDistribution, continueOnError: false },
{ target: desktop, module: desktopApp , os: ubuntu-latest, tasks: assemble, continueOnError: false }
{ target: wasm, module: wasmApp , os: ubuntu-latest, tasks: wasmJsBrowserDistribution },
{ target: desktop, module: desktopApp , os: ubuntu-latest, tasks: assemble }
]
if: ${{ success() }}
needs: [ build-lib-ui ]
Expand All @@ -149,8 +148,8 @@ jobs:
java-version: 17

- name: Build sample ${{ matrix.config.target }} - Release
continue-on-error: ${{ matrix.config.continueOnError }}
run: ./gradlew :samples:${{ matrix.module }}:${{ matrix.config.tasks }}
continue-on-error: false
run: ./gradlew :samples:${{ matrix.config.module }}:${{ matrix.config.tasks }}

check-sign:
name: Check signature - Release
Expand Down

0 comments on commit 9b76792

Please sign in to comment.