We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9cda9 commit 274d8cbCopy full SHA for 274d8cb
.github/workflows/release-build.yml
@@ -22,6 +22,5 @@ jobs:
22
- name: Publish artifacts
23
run: ./gradlew publish -x check
24
env:
25
- NEXUS_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
26
- NEXUS_USER: ${{ secrets.GITHUB_ACTOR }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
build.gradle.kts
@@ -43,8 +43,8 @@ subprojects {
43
maven {
44
url = uri("https://maven.pkg.github.com/pledger-io/rest-application")
45
credentials {
46
- username = System.getenv("NEXUS_USER")
47
- password = System.getenv("NEXUS_PASSWORD")
+ username = System.getenv("GITHUB_ACTOR")
+ password = System.getenv("GITHUB_TOKEN")
48
}
49
50
0 commit comments