Skip to content

Commit

Permalink
ci: revert osshr username and password, ktlint, and modify osshr user…
Browse files Browse the repository at this point in the history
…name and password correctly
  • Loading branch information
xavimolloy committed Jul 3, 2024
1 parent 6582e45 commit fdbc869
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Publish to maven
run: ./.github/workflows/scripts/publish-maven.sh
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
OSSRH_USERNAME: ${{ secrets.SONATYPE_OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.SONATYPE_OSSRH_PASSWORD }}
SIGNING_PRIVATE_KEY: ${{ secrets.PGP_PRIVATE_KEY }}
SIGNING_PASSWORD: ${{ secrets.PGP_PASSPHRASE }}
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ if (project.hasProperty("removeSnapshotSuffix")) {
version = mainVersion
}


allprojects {
apply(plugin = "org.jlleitschuh.gradle.ktlint")
ktlint {
Expand Down Expand Up @@ -80,8 +79,8 @@ subprojects {
}
}

val ossrhUsername: String? = System.getenv("SONATYPE_OSSRH_USERNAME")
val ossrhPassword: String? = System.getenv("SONATYPE_OSSRH_PASSWORD")
val ossrhUsername: String? = System.getenv("OSSRH_USERNAME")
val ossrhPassword: String? = System.getenv("OSSRH_PASSWORD")

nexusPublishing {
this.repositories {
Expand Down
1 change: 0 additions & 1 deletion designsystem/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ plugins {
id("app.cash.paparazzi").version("1.3.3")
}


kotlin {
androidTarget {
publishLibraryVariants("release")
Expand Down

0 comments on commit fdbc869

Please sign in to comment.