Skip to content

Commit

Permalink
Add GH Actions and FUNDING.YML
Browse files Browse the repository at this point in the history
  • Loading branch information
Obydux committed Aug 8, 2024
1 parent 1e47e2f commit 21e1b6e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
github: Obydux
ko_fi: Obydux
liberapay: Obydux
open_collective: Obydux
patreon: Obydux
buy_me_a_coffee: Obydux
custom: https://paypal.me/Obydux/
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build NoCheat

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build NoCheat
run: mvn clean install
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: NoCheat
path: ./build/libs/**.jar

0 comments on commit 21e1b6e

Please sign in to comment.