Skip to content

Commit

Permalink
Trying to fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
asm0dey committed Jul 11, 2023
1 parent bd616a5 commit 3dcfe52
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ permissions:
contents: read

jobs:
build:
uses: ./.github/workflows/gradle.yml
# build:
# uses: ./.github/workflows/gradle.yml
deploy:
needs: build
# needs: build
strategy:
matrix:
include:
Expand Down
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ plugins {
alias(libs.plugins.androidLibrary).apply(false)
alias(libs.plugins.kotlinMultiplatform).apply(false)
}
group = "com.github.asm0dey.dummylib"
version = "0.0.1"
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ plugins {
signing
}

group = "com.github.asm0dey.dummylib"
version = "0.0.1"

val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
}
Expand Down Expand Up @@ -47,7 +44,7 @@ publishing {
}

signing {
if (System.clearProperty("signing.gnupg.keyName")!=null) {
if (property("signing.gnupg.keyName") != null) {
useGpgCmd()
sign(publishing.publications)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ plugins {
id("io.github.gradle-nexus.publish-plugin")
}

group = "com.github.asm0dey.dummylib"
version = "0.0.1"

nexusPublishing {
// Configure maven central repository
// https://github.com/gradle-nexus/publish-plugin#publishing-to-maven-central-via-sonatype-ossrh
Expand Down

0 comments on commit 3dcfe52

Please sign in to comment.