Skip to content

Commit 3071ee4

Browse files
Merge pull request #12 from alexanderjordanbaker/DeveloperSection
Updating snapshot release checker and adding developer section to bui…
2 parents ff05e02 + 7bdefb2 commit 3071ee4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/ci-snapshot.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ jobs:
3232
run: >
3333
sudo -E env "PATH=$PATH" bash -c "ulimit -l 65536 && ulimit -a &&
3434
./gradlew properties --no-daemon --console=plain -q | grep -E '^version: [\.0-9]+\-SNAPSHOT$' &&
35-
./gradlew --no-daemon --parallel clean check &&
35+
(./gradlew --no-daemon --parallel clean check &&
3636
./gradlew --no-daemon --parallel sign &&
37-
./gradlew --no-daemon --parallel publish"
37+
./gradlew --no-daemon --parallel publish
38+
|| exit 1) || exit 0"
3839
- name: Upload Test Results
3940
if: always()
4041
uses: actions/upload-artifact@v3

build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ publishing {
4747
url = "https://github.com/apple/app-store-server-library-java/blob/main/LICENSE.txt"
4848
}
4949
}
50+
developers {
51+
developer {
52+
id = 'app-store-server-library-project-authors'
53+
name = 'App Store Server Library project authors'
54+
55+
}
56+
}
5057
scm {
5158
connection = 'scm:git:git://github.com:apple/app-store-server-library-java.git'
5259
developerConnection = 'scm:git:ssh://github.com:apple/app-store-server-library-java.git'

0 commit comments

Comments
 (0)