Skip to content

Commit

Permalink
add gpg import & fix some links
Browse files Browse the repository at this point in the history
  • Loading branch information
erosb committed Oct 28, 2024
1 parent 96481c9 commit d8153bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/maven-central-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
- name: Publish packages
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
env:
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ publishing {
pom {
name = project.name
description = project.description
url = "https://github.com/erosb/openapi4j"
url = "https://github.com/erosb/kappa"
licenses {
license {
name = "Apache License, Version 2.0"
Expand All @@ -75,9 +75,9 @@ publishing {
}
}
scm {
connection = "scm:git:git://github.com:erosb/openapi4j.git"
developerConnection = "scm:git:https://github.com/erosb/openapi4j"
url = "https://github.com/erosb/openapi4j"
connection = "scm:git:git://github.com:erosb/kappa.git"
developerConnection = "scm:git:https://github.com/erosb/kappa"
url = "https://github.com/erosb/kappa"
}
}
}
Expand Down

0 comments on commit d8153bf

Please sign in to comment.