34 lines
No EOL
1 KiB
YAML
34 lines
No EOL
1 KiB
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container: debian:sid
|
|
steps:
|
|
- name: Install JDK and other deps
|
|
run: apt update && apt install --no-install-recommends -y openjdk-21-jdk-headless maven git nodejs curl zstd
|
|
|
|
- name: Clone repository
|
|
run: git clone -b ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} https://git.m724.eu/Minecon724/tweaks724.git .
|
|
|
|
- name: Download NMS
|
|
run: ./tools/download_nms.sh ~
|
|
|
|
|
|
|
|
- name: Build for 1.21.1
|
|
run: mvn package -Dproject.minecraft.version=1.21.1 -Dproject.nms.version=v1_21_R1
|
|
|
|
- name: Build for 1.21.3
|
|
run: mvn package -Dproject.minecraft.version=1.21.3 -Dproject.nms.version=v1_21_R2
|
|
|
|
- name: Build for 1.21.4
|
|
run: mvn package -Dproject.minecraft.version=1.21.4 -Dproject.nms.version=v1_21_R3
|
|
|
|
|
|
|
|
- name: Upload artifacts
|
|
uses: https://github.com/actions/upload-artifact@v3
|
|
with:
|
|
path: target/tweaks-*+1.21.1.jar
|
|
target/tweaks-*+1.21.3.jar
|
|
target/tweaks-*+1.21.4.jar |