File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
.github/actions/jreleaser Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ # TODO: Delete this action when we migrate off JReleaser for all our releases
2+
3+ name : JReleaser check
4+ description : Smoke test that checks our jreleaser release command works
5+ runs :
6+ using : composite
7+ steps :
8+ - name : Checkout repository
9+ uses : actions/checkout@v4
10+
11+ - name : Configure Gradle
12+ uses : awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main
13+
14+ - name : Test jreleaserFullRelease
15+ shell : bash
16+ run : |
17+ export JRELEASER_PROJECT_JAVA_GROUP_ID="com.sonatype.central.testing.amazon"
18+ export JRELEASER_MAVENCENTRAL_USERNAME="foo"
19+ export JRELEASER_MAVENCENTRAL_TOKEN="foo"
20+ export JRELEASER_GENERIC_TOKEN="foo"
21+
22+ ./gradlew jreleaserFullRelease --dryrun --stacktrace
You can’t perform that action at this time.
0 commit comments