fix(ci): use workflow_call hyphen secret names in java-release - #115
Merged
Conversation
pmathew92
approved these changes
Jul 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Fixes the reusable release workflow so
maven-publishreads the correct secret names..github/workflows/java-release.ymlreferencedsecrets.OSSR_USERNAME,secrets.SIGNING_KEY, etc., but inside aworkflow_callworkflow only the hyphenated names declared in itssecrets:block are in scope. The uppercase refs resolved to empty, soSIGNING_KEY/MAVEN_*reached Gradle blank and the2.0.3release failed at thesigning {}block (nothing published, no tag created). Changed them tosecrets.ossr-username,secrets.signing-key, etc., matchingauth0/Auth0.Android.CI/release wiring only — no library, API, or UI changes.
Testing
secrets.*refs now match theworkflow_call: secrets:declarations in the same file.publishToSonatype/closeSonatypeStagingRepositorysucceed with a stagedcom.auth0.android:jwtdecode:2.0.3in the Central Portal.Build and TestCI runs unaffected.[x] This change adds test coverage
[x] This change has been tested on the latest version of the platform/language or why not
Checklist
[x] I have read the Auth0 general contribution guidelines
[x] I have read the Auth0 Code of Conduct
[x] All existing and new tests complete without errors