Skip to content

Commit

Permalink
Use invalid credentials for publishing to test signing step
Browse files Browse the repository at this point in the history
  • Loading branch information
jayohms committed Sep 19, 2023
1 parent d626537 commit bb2e653
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions strada/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ afterEvaluate {
url = uri('https://s01.oss.sonatype.org/content/repositories/releases/')

credentials {
username = System.getenv('SONATYPE_USER')
password = System.getenv('SONATYPE_PASSWORD')
username = "testing" //System.getenv('SONATYPE_USER')
password = "testing" //System.getenv('SONATYPE_PASSWORD')
}
}
} else {
Expand All @@ -182,8 +182,8 @@ afterEvaluate {
url = uri('https://maven.pkg.github.com/hotwired/strada-android')

credentials {
username = System.getenv('GITHUB_ACTOR')
password = System.getenv('GITHUB_TOKEN')
username = "testing" //System.getenv('GITHUB_ACTOR')
password = "testing" //System.getenv('GITHUB_TOKEN')
}
}
}
Expand Down

0 comments on commit bb2e653

Please sign in to comment.