diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index d41b7de..24dda6c 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -7,7 +7,7 @@ on: jobs: deploy: timeout-minutes: 30 - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v4 diff --git a/build.gradle.kts b/build.gradle.kts index e06a56e..7df8558 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,6 +16,9 @@ plugins { alias(libs.plugins.kotlinter) } +group = "com.svenjacobs.reveal" +version = (System.getenv("RELEASE_TAG_NAME") ?: "SNAPSHOT").replace("v", "") + subprojects { apply(plugin = "org.jmailen.kotlinter") }