Skip to content

Commit

Permalink
release workflow name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luca992 committed Nov 28, 2024
1 parent 09c977d commit f91c54b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
name: Build and publish snapshot
name: Build and Publish Release
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
13 changes: 4 additions & 9 deletions kamel-samples/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl

plugins {
alias(libs.plugins.org.jetbrains.kotlin.multiplatform)
Expand All @@ -11,12 +11,12 @@ plugins {
}

android {
compileSdk = 34
compileSdk = 35
namespace = "io.kamel.samples"

defaultConfig {
minSdk = 28
targetSdk = 34
targetSdk = 35
versionCode = 1
versionName = "1.0"
multiDexEnabled = true
Expand Down Expand Up @@ -81,12 +81,7 @@ kotlin {
macosArm64(config)
}
macosTargets {
binaries.executable {
freeCompilerArgs += listOf(
"-linker-option", "-framework", "-linker-option", "Metal"
)
linkerOpts.add("-lsqlite3")
}
binaries.executable()
}
applyDefaultHierarchyTemplate()

Expand Down

0 comments on commit f91c54b

Please sign in to comment.