Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gradle/gradle-build-action action to v2.11.1 #257

Merged
merged 1 commit into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/gradle-test-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
check-latest: true

- name: Publish JVM, JS and MacOS versions
uses: gradle/[email protected].0
uses: gradle/[email protected].1
if: matrix.os == 'macos-11'
with:
cache-disabled: true
arguments: --full-stacktrace build publishAllPublicationToOssrhRepository

- name: Publish Linux version
uses: gradle/[email protected].0
uses: gradle/[email protected].1
if: matrix.os == 'ubuntu-latest'
with:
cache-disabled: true
arguments: --full-stacktrace linuxX64Test publishLinuxX64PublicationToOssrhRepository

- name: Publish Windows version
uses: gradle/[email protected].0
uses: gradle/[email protected].1
if: matrix.os == 'windows-latest'
with:
cache-disabled: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gradle-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ jobs:
java-version: '17'

- name: Test (macos, jvm, js)
uses: gradle/[email protected].0
uses: gradle/[email protected].1
if: matrix.os == 'macos-11'
with:
arguments: --full-stacktrace build

- name: Test (linux)
uses: gradle/[email protected].0
uses: gradle/[email protected].1
if: matrix.os == 'ubuntu-latest'
with:
arguments: --full-stacktrace linuxX64Test

- name: Test (windows)
uses: gradle/[email protected].0
uses: gradle/[email protected].1
if: matrix.os == 'windows-latest'
with:
arguments: --full-stacktrace mingwX64Test
Expand Down