Skip to content

Rebuild

Rebuild #6

Workflow file for this run

name: Gradle Build
on: [push, pull_request]
jobs:
build:
name: Build WorldGuardExtraFlags on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Grant execute permission to script
run: bash -c "chmod +x script.sh"
- name: Update upstream and apply patches
shell: bash
run: |
git config --global user.email "action@github.com"
git config --global user.name "Action Github"
./script.sh updateUpstream
./script.sh applyPatches
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
cache-read-only: ${{ !(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/version/')) }}
- name: Execute Gradle build
run: |
cd WorldGuardExtraFlags-Patchs
mvn -B package --file pom.xml
- name: Upload WorldGuardExtraFlags jar
uses: actions/upload-artifact@v4
with:
name: WorldGuardExtraFlags-Folia-Snapshot
path: WorldGuardExtraFlags-Patchs/Spigot/target/WorldGuardExtraFlags.jar*