Skip to content

Commit

Permalink
fix: release 4.0 (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianIOHK committed Sep 12, 2024
1 parent c476da6 commit 122aeaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.IDENTUS_CI }}
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ subprojects {
}
}
scm {
connection.set("scm:git:git:/git@github.com/hyperledger/identus-edge-agent-sdk-kmp.git")
developerConnection.set("scm:git:ssh:/git@github.com/hyperledger/identus-edge-agent-sdk-kmp.git")
connection.set("scm:git:git://git@github.com/hyperledger/identus-edge-agent-sdk-kmp.git")
developerConnection.set("scm:git:ssh://git@github.com/hyperledger/identus-edge-agent-sdk-kmp.git")
url.set("https://github.com/hyperledger/identus-edge-agent-sdk-kmp")
}
}
Expand All @@ -212,7 +212,7 @@ nexusPublishing {
repositories {
sonatype {
nexusUrl.set(uri("https://oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://oss.sonatype.org/content/repositories/snapshots/"))
snapshotRepositoryUrl.set(uri("https://oss.sonatype.org/content/repositories/releases/"))
username.set(System.getenv("OSSRH_USERNAME"))
password.set(System.getenv("OSSRH_TOKEN"))
}
Expand Down

0 comments on commit 122aeaa

Please sign in to comment.