Skip to content

Commit

Permalink
Fix/attempt 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbuilder1961 committed Sep 25, 2024
1 parent dac5543 commit 0575e70
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ jobs:

- name: setup gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: wrapper

- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew

- name: build
run: ./gradlew build --info --stacktrace
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/gradle_dependency_submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ permissions:

jobs:
dependency-submission:
strategy:
matrix:
java: [
21 # Latest Java LTS & minimum supported by Minecraft
]
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand All @@ -26,6 +31,6 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
java-version: ${{ matrix.java }}
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v4

0 comments on commit 0575e70

Please sign in to comment.