Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/actions/jreleaser/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# TODO: Delete this action when we migrate off JReleaser for all our releases

name: JReleaser check
description: Smoke test that checks our jreleaser release command works
runs:
using: composite
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Configure Gradle
uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main

- name: Test jreleaserFullRelease
shell: bash
run: |
export JRELEASER_PROJECT_JAVA_GROUP_ID="com.sonatype.central.testing.amazon"
export JRELEASER_MAVENCENTRAL_USERNAME="foo"
export JRELEASER_MAVENCENTRAL_TOKEN="foo"
export JRELEASER_GENERIC_TOKEN="foo"

./gradlew jreleaserFullRelease --dryrun --stacktrace
Loading