Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyley committed Jan 20, 2024
1 parent 737a18e commit a9d0967
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ jobs:
release_type: ${{ steps.generate-version-suffix.outputs.release_type }}
version_suffix: ${{ steps.generate-version-suffix.outputs.version_suffix }}
steps:
- name: Check sonatype token parsing
env:
SONATYPE_TOKEN: ${{ secrets.SONATYPE_TOKEN }}
run: |
SONATYPE_USERNAME="${SONATYPE_TOKEN%%:*}" # See https://github.com/xerial/sbt-sonatype/pull/62
SONATYPE_PASSWORD="${SONATYPE_TOKEN#*:}"
echo "Credential lengths... username=${#SONATYPE_USERNAME} puggle=${#SONATYPE_PASSWORD}"
- uses: actions/setup-java@v4
with:
distribution: corretto
Expand Down

0 comments on commit a9d0967

Please sign in to comment.