Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
Add Build Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JT122406 authored Nov 22, 2024
1 parent 064e4d2 commit 2c46440
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/gradlebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Gradle Build

on:
push:
branches:
- 1.19.4

jobs:
gradle:
strategy:
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
cache: gradle

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Change wrapper permissions
run: chmod +x ./gradlew

- name: Execute Gradle build
run: ./gradlew build

0 comments on commit 2c46440

Please sign in to comment.