mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-19 14:59:25 +00:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
name: DivineMC Test CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: [ master ]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.commits[0].message, '[ci-skip]')"
|
|
steps:
|
|
- name: Setup Action
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Gradle
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
- name: Setup JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: 21
|
|
cache: 'gradle'
|
|
|
|
- name: Configure Git and Gradle
|
|
run: |
|
|
git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions"
|
|
echo "BUILD_NUMBER=$GITHUB_RUN_NUMBER" >> $GITHUB_ENV
|
|
chmod +x gradlew
|
|
|
|
- name: Patch
|
|
run: ./gradlew applyAllPatches --stacktrace
|
|
|
|
- name: Build Paperclip Jar
|
|
run: ./gradlew createMojmapPaperclipJar --stacktrace
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@main
|
|
with:
|
|
name: DivineMC
|
|
path: divinemc-server/build/libs/divinemc-paperclip-*-mojmap.jar
|