Merge branch 'dev' #1
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Slimefun Builder | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'src/**' | |
- 'pom.xml' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
java-package: jdk | |
architecture: x64 | |
- name: Codestyle Check | |
run: mvn -B spotless:check -s $GITHUB_WORKSPACE/settings.xml --file pom.xml --errors | |
- name: Build Slimefun | |
run: mvn -B package -s $GITHUB_WORKSPACE/settings.xml --file pom.xml --errors | |
- uses: actions/cache@v2 | |
name: Cache dependencies | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- uses: actions/upload-artifact@v2 | |
name: Upload Beta artifact | |
with: | |
name: Slimefun Beta Build | |
path: staging | |
- name: Automatic Releases | |
uses: marvinpinto/[email protected] | |
if: github.ref_name == 'master' | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "exp" | |
prerelease: true | |
title: "Slimefun 自动构建版本" | |
files: | | |
target/Slimefun-*.jar |