Skip to content

Commit

Permalink
Fix description identifier of staging repository
Browse files Browse the repository at this point in the history
See also "What about the weird '0.1.0-SNAPSHOT' in the logs?" in
guardian/marley#102 (comment)
  • Loading branch information
rtyley committed Mar 6, 2024
1 parent a56d12f commit 396f81d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:

sonatype-release:
name: 🔒 Sonatype Release
needs: sign
needs: [push-release-commit, sign]
runs-on: ubuntu-latest
steps:
- uses: actions/cache/restore@v4
Expand All @@ -366,11 +366,12 @@ jobs:
sonatypeBundleDirectory := new File("$LOCAL_ARTIFACTS_STAGING_PATH")
sonatypeProfileName := "${{ inputs.SONATYPE_PROFILE_NAME }}"
sonatypeCredentialHost := "${{ inputs.SONATYPE_CREDENTIAL_HOST }}"
version := "${{ needs.push-release-commit.outputs.release_version }}"
EndOfFile
mkdir project
echo 'addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")' > project/plugins.sbt
echo 'sbt.version = 1.9.8' > project/build.properties
echo 'addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0")' > project/plugins.sbt
echo 'sbt.version = 1.9.9' > project/build.properties
ls -lR .
- uses: actions/setup-java@v4
Expand Down

0 comments on commit 396f81d

Please sign in to comment.