Skip to content

Commit

Permalink
Add github workflows and funding file.
Browse files Browse the repository at this point in the history
  • Loading branch information
kafeindev committed Nov 16, 2023
1 parent ee2d1ef commit 980423a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: KafeinDev
32 changes: 32 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Java CI with Gradle

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew shadowJar

- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: plugin
path: bukkit/build/libs/MultiDuels-*.jar

0 comments on commit 980423a

Please sign in to comment.