27 lines
No EOL
961 B
YAML
27 lines
No EOL
961 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container: debian:sid
|
|
steps:
|
|
- name: Prepare for installation
|
|
run: apt update
|
|
- name: Install JDK and other deps
|
|
run: apt install --no-install-recommends -y openjdk-21-jdk-headless maven git nodejs curl zstd
|
|
|
|
- name: Clone repository
|
|
run: git clone https://git.m724.eu/Minecon724/tweaks724.git .
|
|
|
|
#- name: BuildTools for NMS
|
|
# run: mkdir /tmp/buildtools && cd /tmp/buildtools && curl -O https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar && java -jar BuildTools.jar --rev 1.21.1 --remapped && cd
|
|
|
|
- name: Download NMS
|
|
run: echo $GITHUB_HEAD_REF $GITHUB_REF && pwd && ls && ./tools/download_nms.sh ~
|
|
|
|
- name: Build for 1.21.1
|
|
run: mvn clean package
|
|
|
|
- name: Upload artifacts
|
|
uses: https://github.com/actions/upload-artifact@v3
|
|
with:
|
|
path: target |