Skip to content

Commit 697256d

Browse files
fix(ci): release-doctor — report correct token name
1 parent 5e0d3c8 commit 697256d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/check-release-environment

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
errors=()
44

55
if [ -z "${SONATYPE_USERNAME}" ]; then
6-
errors+=("The INCREASE_SONATYPE_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
6+
errors+=("The SONATYPE_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
77
fi
88

99
if [ -z "${SONATYPE_PASSWORD}" ]; then
10-
errors+=("The INCREASE_SONATYPE_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
10+
errors+=("The SONATYPE_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1111
fi
1212

1313
if [ -z "${GPG_SIGNING_KEY}" ]; then
14-
errors+=("The INCREASE_SONATYPE_GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
14+
errors+=("The GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1515
fi
1616

1717
if [ -z "${GPG_SIGNING_PASSWORD}" ]; then
18-
errors+=("The INCREASE_SONATYPE_GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
18+
errors+=("The GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1919
fi
2020

2121
lenErrors=${#errors[@]}

0 commit comments

Comments
 (0)