Skip to content

fix gradle timout #1251

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
java-version: '21'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
uses: gradle/actions/wrapper-validation@v4
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build

Expand Down Expand Up @@ -104,9 +104,9 @@ jobs:
distribution: 'microsoft'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
uses: gradle/actions/wrapper-validation@v4
- name: make gradle wrapper executable
run: chmod +x ./gradlew

- name: Run client gametest with Xvfb
uses: modmuss50/xvfb-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Release
id: uploadrelease
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
body: ${{ steps.read_changelog.outputs.changelog }}
token: ${{ secrets.GH_RELEASE }}
Expand Down