Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyley committed Jun 19, 2024
1 parent 45e7218 commit 93b86e6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
echo "Credential lengths... username=${#SONATYPE_USERNAME} poop=${#SONATYPE_POOP}"
echo ${SONATYPE_USERNAME:0:2}
echo ${SONATYPE_POOP:0:2}
echo ${SONATYPE_USERNAME:-2}
echo ${SONATYPE_POOP:-2}
echo ${SONATYPE_USERNAME: -2}
echo ${SONATYPE_POOP: -2}
- uses: actions/setup-java@v4
with:
distribution: corretto
Expand Down Expand Up @@ -429,6 +429,9 @@ jobs:
echo "Credential lengths... username=${#SONATYPE_USERNAME} poop=${#SONATYPE_PASSWORD}"
echo ${SONATYPE_USERNAME:0:2}
echo ${SONATYPE_PASSWORD:0:2}
echo ${SONATYPE_USERNAME: -2}
echo ${SONATYPE_PASSWORD: -2}
echo "...blumps"
sbt "sonatypeBundleRelease"
github-release:
Expand Down

0 comments on commit 93b86e6

Please sign in to comment.