Update to 1.20.4 #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build lightfall | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven | |
run: | | |
git config --global user.name "GitHub Actions" | |
git submodule update --recursive --init | |
./scripts/applyPatches.sh | |
mvn -B clean package "-Dbuild.number=$GITHUB_RUN_NUMBER" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: lightfall jars | |
path: ./lightfall-proxy/bootstrap/target/lightfall.jar |