Skip to content

Commit 47187c8

Browse files
authored
feat: jreleaser check action (#119)
1 parent 899ccf3 commit 47187c8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

0 commit comments

Comments
 (0)