Skip to content

Commit fb1e35f

Browse files
committed
fix nexus password
Signed-off-by: Adam Ratzman <[email protected]>
1 parent 7498514 commit fb1e35f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
SPOTIFY_TOKEN_STRING: ${{ github.event.inputs.spotify_test_client_token }}
1818
SPOTIFY_REDIRECT_URI: ${{ github.event.inputs.spotify_test_redirect_uri }}
1919
ORG_GRADLE_PROJECT_NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
20-
ORG_GRADLE_PROJECT_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
20+
ORG_GRADLE_PROJECT_NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
2121
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
2222
ORG_GRADLE_PROJECT_SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
2323
SPOTIFY_API_PUBLISH_VERSION: ${{ github.event.inputs.release_version }}

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ npmPublishing {
420420
repositories {
421421
repository("npmjs") {
422422
registry = uri("https://registry.npmjs.org")
423-
(project.properties.get("npmauthtoken") as? String)?.let { authToken = it }
423+
(project.properties["npmauthtoken"] as? String)?.let { authToken = it }
424424
}
425425
}
426426
}

0 commit comments

Comments
 (0)