-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
11 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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
java-version: 11 | ||
|
||
- name: Gradle build | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: --full-stacktrace build "-Psemver.stage=alpha" | ||
|
||
|
@@ -52,7 +52,7 @@ jobs: | |
java-version: 11 | ||
|
||
- name: Generate Tag | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: --full-stacktrace createSemverTag "-Psemver.stage=alpha" | ||
|
||
|
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 |
---|---|---|
|
@@ -45,7 +45,7 @@ jobs: | |
java-version: 11 | ||
|
||
- name: Gradle build | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: --full-stacktrace build "-Psemver.scope=${{ github.event.inputs.scope }}" "-Psemver.stage=${{ github.event.inputs.stage }}" | ||
|
||
|
@@ -72,7 +72,7 @@ jobs: | |
java-version: 11 | ||
|
||
- name: Generate Tag | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: --full-stacktrace createSemverTag "-Psemver.scope=${{ github.event.inputs.scope }}" "-Psemver.stage=${{ github.event.inputs.stage }}" | ||
|
||
|
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 |
---|---|---|
|
@@ -44,7 +44,7 @@ jobs: | |
java-version: 11 | ||
|
||
- name: Build | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: assemble -Pkotlin.mpp.enableCompatibilityMetadataVariant=true --full-stacktrace | ||
|
||
|
@@ -59,7 +59,7 @@ jobs: | |
path: '**/build/reports/**' | ||
|
||
- name: Publish alpha/beta/rc version | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
if: | | ||
contains(steps.version.outputs.arrow, 'alpha') || | ||
contains(steps.version.outputs.arrow, 'beta') || | ||
|
@@ -68,7 +68,7 @@ jobs: | |
arguments: --full-stacktrace -Pkotlin.mpp.enableCompatibilityMetadataVariant=true publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
|
||
- name: Publish final version | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
if: | | ||
!contains(steps.version.outputs.arrow, 'alpha') && | ||
!contains(steps.version.outputs.arrow, 'beta') && | ||
|
@@ -85,7 +85,7 @@ jobs: | |
bundle install --gemfile Gemfile | ||
- name: Create API doc | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: --full-stacktrace -Pkotlin.mpp.enableCompatibilityMetadataVariant=true dokkaGfm | ||
|
||
|
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 |
---|---|---|
|
@@ -26,13 +26,13 @@ jobs: | |
java-version: 11 | ||
|
||
- name: build | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
if: matrix.os != 'windows-latest' | ||
with: | ||
arguments: --full-stacktrace build | ||
|
||
- name: mingwX64Test | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
if: matrix.os == 'windows-latest' | ||
with: | ||
arguments: --full-stacktrace mingwX64Test | ||
|
@@ -62,7 +62,7 @@ jobs: | |
java-version: 11 | ||
|
||
- name: Build | ||
uses: gradle/[email protected].1 | ||
uses: gradle/[email protected].2 | ||
with: | ||
arguments: apiDump | ||
|
||
|