From ffcc28d5ab8b59a634806b03fd226a5d77d22b3b Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Tue, 16 Apr 2024 10:16:20 +0300 Subject: [PATCH] fix: make sensible build check even sensibleer --- .github/workflows/build.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 266ac71..ae476c6 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,15 +8,7 @@ on: [pull_request, push] jobs: build: - strategy: - matrix: - # Use these Java versions - java: [ - 17, # Current Java LTS & minimum supported by Minecraft - ] - # and run on both Linux and Windows - os: [ubuntu-22.04, windows-2022] - runs-on: ${{ matrix.os }} + runs-on: "ubuntu-latest" steps: - name: Setup Java uses: actions/setup-java@v3 @@ -33,12 +25,4 @@ jobs: repository: 'java-jscript' - name: Build run: | - cd java-jscript; gradle build - - - uses: "marvinpinto/action-automatic-releases@latest" - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - prerelease: false - files: | - java-jscript/LICENSE - java-jscript/build/libs/*.jar + cd java-jscript; gradle build \ No newline at end of file