Skip to content

Update several build plugins, Gson, and Netty #59

Update several build plugins, Gson, and Netty

Update several build plugins, Gson, and Netty #59

Workflow file for this run

name: Build
on:
push:
paths:
- patches/**.patch
- scripts/**.sh
- pom.xml
- settings.xml
pull_request:
paths:
- patches/**.patch
- scripts/**.sh
workflow_dispatch:
jobs:
build:
name: Build (Java ${{ matrix.java }})
strategy:
matrix:
java:
- "8"
- "17"
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
- id: setup-java
name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- id: setup-git
name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub CI"
- id: build
name: Build SportPaper
run: bash sportpaper build
- id: upload
name: Upload SportPaper
uses: actions/upload-artifact@v3
with:
name: SportPaper-Java-${{ matrix.java }}.jar
path: SportPaper-Server/target/sportpaper-*.jar
if-no-files-found: error
- id: deploy
if: |
github.repository_owner == 'Electroid' &&
github.ref == 'refs/heads/main' &&
matrix.java == '8'
name: Deploy SportPaper
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}