Initial commit 🚀
All checks were successful
Build and publish release / build-docker (push) Successful in 4s

This commit is contained in:
Tulis
2025-07-27 13:35:39 +02:00
commit b10c8b4417
7 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,27 @@
name: Build and publish release
on:
push:
branches:
- main
schedule:
- cron: '*/15 * * * *'
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Maven
run: |
version=$(curl -s https://hub.spigotmc.org/versions/ | \
grep -oE '[0-9]+\.[0-9]+\.[0-9]+\.json' | \
sort -V | \
tail -n 1 | \
sed 's/\.json$//')
- name: Download Java 21
run: |
echo $version