We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04a07a6 commit 757a274Copy full SHA for 757a274
.github/workflows/release.yml
@@ -25,8 +25,10 @@ jobs:
25
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
run: cd lisa && ./gradlew publishAllPublicationsToOSSRHRepository
27
- name: Finalize Publication to Maven Central
28
+ env:
29
+ MAVEN_PORTAL_B64_TOKEN: ${{ secrets.MAVEN_PORTAL_B64_TOKEN }}
30
run: |
31
# Send the POST request to the Staging API for automatic release
32
curl -X POST \
- -H "Authorization: Bearer ${{ secrets.MAVEN_PORTA_B64_TOKEN }}" \
- "https://ossrh-staging-api.central.sonatype.com"
33
+ -H "Authorization: Bearer $MAVEN_PORTAL_B64_TOKEN" \
34
+ "https://ossrh-staging-api.central.sonatype.com/manual/upload/defaultRepository/io.github.lisa-analyzer?publishing_type=automatic"
0 commit comments