Merge pull request #6 from Kas-tle/master
Load before hyperverse and create automatic releases
This commit is contained in:
commit
28b3965582
4 changed files with 62 additions and 3 deletions
57
.github/workflows/maven.yml
vendored
Normal file
57
.github/workflows/maven.yml
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
# 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: Java CI with Maven
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Get version information
|
||||
id: version
|
||||
uses: ncipollo/semantic-version-action@v1
|
||||
- name: Set up JDK 11
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 11
|
||||
java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk
|
||||
architecture: x86 # (x64 or x86) - defaults to x64
|
||||
- run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
|
||||
- run: java -jar BuildTools.jar --rev 1.16.4
|
||||
- name: Cache Maven packages
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: ${{ runner.os }}-m2
|
||||
- name: Build with Maven
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: mvn -B package --file pom.xml
|
||||
- run: mkdir staging && cp target/*.jar staging
|
||||
- name: Generate release diff
|
||||
env:
|
||||
BEGIN_COMMIT: ${{ steps.version.outputs.previous_tag }}
|
||||
END_COMMIT: ${{ steps.version.outputs.tag }}
|
||||
run: git fetch --tags --force && git log --pretty=format:"* %s (%h)" ${BEGIN_COMMIT}..${END_COMMIT} > release_notes.md
|
||||
- name: Create release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: staging/*
|
||||
allowUpdates: true
|
||||
bodyFile: "release_notes.md"
|
||||
draft: false
|
||||
prerelease: false
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
@ -1,3 +1,4 @@
|
|||
![Java CI with Maven](https://github.com/Kas-tle/CustomDimensions/workflows/Java%20CI%20with%20Maven/badge.svg)
|
||||
# CustomDimensions
|
||||
Custom dimension support for 1.16.4 Bukkit/Spigot/Paper servers
|
||||
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -6,7 +6,7 @@
|
|||
|
||||
<groupId>com.github.TBMCPlugins</groupId>
|
||||
<artifactId>CustomDimensions</artifactId>
|
||||
<version>1.4</version>
|
||||
<version>1.5.1</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -76,4 +76,4 @@
|
|||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -3,4 +3,5 @@ main: buttondevteam.customdimensions.CustomDimensions
|
|||
version: '1.4'
|
||||
api-version: '1.16'
|
||||
loadbefore:
|
||||
- Multiverse-Core
|
||||
- Multiverse-Core
|
||||
- Hyperverse
|
||||
|
|
Loading…
Reference in a new issue