-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.5.3-SNAPSHOT - github gradle action fix
- Loading branch information
Showing
2 changed files
with
15 additions
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,26 +33,20 @@ jobs: | |
java-version: '17' | ||
check-latest: true | ||
|
||
- name: Publish JVM, JS and MacOS versions | ||
uses: gradle/[email protected] | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
|
||
- name: Publish (macos, jvm, js) | ||
if: matrix.os == 'macos-latest' | ||
with: | ||
cache-disabled: true | ||
arguments: --full-stacktrace build publishAllPublicationToOssrhRepository | ||
run: ./gradlew build publishAllPublicationToOssrhRepository --full-stacktrace | ||
|
||
- name: Publish Linux version | ||
uses: gradle/[email protected] | ||
- name: Publish (linux) | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
cache-disabled: true | ||
arguments: --full-stacktrace linuxX64Test publishLinuxX64PublicationToOssrhRepository | ||
run: ./gradlew linuxX64Test publishLinuxX64PublicationToOssrhRepository --full-stacktrace | ||
|
||
- name: Publish Windows version | ||
uses: gradle/[email protected] | ||
- name: Publish (windows) | ||
if: matrix.os == 'windows-latest' | ||
with: | ||
cache-disabled: true | ||
arguments: --full-stacktrace mingwX64Test publishMingwX64PublicationToOssrhRepository | ||
run: ./gradlew mingwX64Test publishMingwX64PublicationToOssrhRepository --full-stacktrace | ||
|
||
- name: Stop Gradle daemons | ||
run: ./gradlew --stop |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,23 +29,20 @@ jobs: | |
distribution: 'adopt' | ||
java-version: '17' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
|
||
- name: Test (macos, jvm, js) | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'macos-latest' | ||
with: | ||
arguments: --full-stacktrace build | ||
run: ./gradlew build --full-stacktrace | ||
|
||
- name: Test (linux) | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
arguments: --full-stacktrace linuxX64Test | ||
run: ./gradlew linuxX64Test --full-stacktrace | ||
|
||
- name: Test (windows) | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'windows-latest' | ||
with: | ||
arguments: --full-stacktrace mingwX64Test | ||
run: ./gradlew mingwX64Test --full-stacktrace | ||
|
||
- name: Upload reports | ||
uses: actions/[email protected] | ||
|