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 eb3e1df commit d43757cCopy full SHA for d43757c
.github/workflows/publish_jar.yml
@@ -55,7 +55,7 @@ jobs:
55
bash create_bundle.sh $VERSION
56
curl --request POST \
57
--verbose \
58
- --header "Authorization: Bearer ${{ secrets.BEARER_TOKEN }}" \
+ --header "Authorization: Bearer ${BEARER_TOKEN}" \
59
--form [email protected] \
60
--form publishingType=AUTOMATIC \
61
https://central.sonatype.com/api/v1/publisher/upload \
@@ -65,6 +65,7 @@ jobs:
65
exit 1
66
fi
67
env:
68
+ BEARER_TOKEN: ${{ secrets.BEARER_TOKEN }}
69
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
70
VERSION: ${{ env.RELEASE_VERSION }}
71
0 commit comments