Publish Release #5
Workflow file for this run
This file contains 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
name: Publish Release | |
on: | |
workflow_dispatch: | |
jobs: | |
publish-release: | |
runs-on: macos-latest | |
if: github.repository == 'square/radiography' | |
timeout-minutes: 35 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: gradle/wrapper-validation-action@699bb18358f12c5b78b37bb0111d3a0e2276e0e2 # v2 | |
# checkVersionIsNotSnapshot doesn't exist in Rick's horde. Pretty trivial to re-implement, | |
# but also not crucial while this is not part of CI (unlikely ever to happen). And in the meantime, | |
# quite handy to leave this check out so that we can use this workflow to publish | |
# SNAPSHOTs. | |
# | |
# OTOH, if we get around to making a Publish Snapshot alternative to this workflow | |
# and tie it to CI, having a checkVersionIsSnapshot task will be very important for that. | |
# - name: Ensure this isn't a -SNAPSHOT version | |
# uses: rickbusarow/actions/gradle-task@bf0940965387f10bcb8b6699a79499d18167dfbe # v1 | |
# with: | |
# task: checkVersionIsNotSnapshot | |
- name: Assemble | |
uses: rickbusarow/actions/gradle-task@bf0940965387f10bcb8b6699a79499d18167dfbe # v1 | |
with: | |
task: assemble | |
# artifactsCheck doesn't exist in Rick's horde, so we continue to rely on manual discipline | |
# to run tests locally before publishing. Could copy this from workflow, but it's tied | |
# to the build-logic system there so doing so would be Actual Work. | |
# - name: Check | |
# uses: rickbusarow/actions/gradle-task@bf0940965387f10bcb8b6699a79499d18167dfbe # v1 | |
# with: | |
# task: check -x artifactsCheck | |
- name: Publish Release | |
uses: rickbusarow/actions/gradle-task@bf0940965387f10bcb8b6699a79499d18167dfbe # v1 | |
with: | |
task: publish | |
env: | |
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }} |