Skip to content

Commit

Permalink
Update build scripts for actions (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
gg12883 authored Mar 11, 2025
1 parent 7d86362 commit 8344eaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up OpenJDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt' # You can choose other OpenJDK distributions.
- name: Build with Gradle
run: ./gradlew build # Ensure your gradlew script is executable
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: NAE2
path: build/libs/*.jar # Make sure this path matches the location of your build artifacts

0 comments on commit 8344eaf

Please sign in to comment.