Skip to content

Commit 6f2f068

Browse files
committed
Fix construction of Maven Central credentials
1 parent 4c6ec56 commit 6f2f068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ jobs:
428428
- name: Release to Maven Central
429429
if: ${{ !contains( github.event.inputs.release_version, '-M' ) }}
430430
run: |
431-
token_header=$(printf "$CENTRAL_USERNAME:$CENTRAL_PASSWORD" | base64)
431+
token_header=$(printf "$CENTRAL_USERNAME:$CENTRAL_TOKEN" | base64)
432432
curl --request POST \
433433
--header "Authorization: Bearer $token_header" \
434434

0 commit comments

Comments
 (0)