Skip to content

Commit

Permalink
ci: Build client after commits
Browse files Browse the repository at this point in the history
  • Loading branch information
Pazaz committed Feb 22, 2024
1 parent 90ed21a commit a5da1c2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/mudclient.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
push:
branches:
- main

jobs:
mudclient:
name: Build mudclient.jar
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Run Gradle build
run: gradle build

- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
name: mudclient
path: |
mudclient/build/libs/*

0 comments on commit a5da1c2

Please sign in to comment.