Create README.md (#13)

This commit is contained in:
Christian Koop 2020-11-01 03:24:55 +01:00
parent 75739a3ac7
commit b3a7119889
No known key found for this signature in database
GPG Key ID: DECCA4CEE0E46D6D
1 changed files with 75 additions and 1 deletions

View File

@ -1 +1,75 @@
# actions-spigotmc-test <p align="center">
<a href="https://sprax.me/discord">
<img alt="Get Support on Discord" src="https://img.shields.io/discord/344982818863972352.svg?label=Get%20Support&logo=Discord&color=blue">
</a>
<a href="https://www.patreon.com/sprax">
<img alt="Support me on Patreon"
src="https://img.shields.io/badge/-Support%20me%20on%20Patreon-%23FF424D?logo=patreon&logoColor=white">
</a>
</p>
<p align="center">
<a href="https://github.com/SpraxDev/Action-SpigotMC/actions?query=workflow%3A%22Build+%26+Run%22">
<img alt="Build & Run" src="https://github.com/SpraxDev/Action-SpigotMC/workflows/Build%20&%20Run/badge.svg">
</a>
<a href="https://sonarcloud.io/dashboard?id=SpraxDev_Action-SpigotMC">
<img alt="Quality Gate Status"
src="https://sonarcloud.io/api/project_badges/measure?project=SpraxDev_Action-SpigotMC&metric=alert_status">
</a>
</p>
# Action-Spigot
This Action allows you to easily compile Minecraft Spigot
and install it in your runners local maven repository.
You configure all the versions you want, and it'll compile all the missing versions automatically.
By checking for a file in the local maven repository beforehand, build times can be reduces drastically.
By default, this Action uses [a fork](https://github.com/SpraxDev/Spigot-BuildTools#readme) of the
[original BuildTools](https://hub.spigotmc.org/stash/projects/SPIGOT/repos/buildtools/browse)
to introduce some improvements in *system compatibility* and *speed*.
## Usage
All the values already provided below are their default values.
If you don't change them, you can remove them from your workflow,
as they are set automatically.
```YAML
- uses: SpraxDev/Action-Spigot@v1
with:
# A comma-separated list of Spigot version that should be compiled
# These values are later given to the BuildTools.jar as '--rev' argument
#
# Example: latest, 1.14.4, 1.8.8
versions: latest
# A comma-separated list of build targets
# This value is later given to the BuildTools.jar as '--compile' argument
#
# Available: None, Spigot, CraftBukkit
# Example: Spigot, CraftBukkit
target: Spigot
# Should sources be generated?
# If enabled, BuildTools is provided the '--generate-source' argument
generateSrc: false
# Should the documentation be generated?
# If enabled, BuildTools is provided the '--generate-docs' argument
generateDoc: false
# Should we disable the BuildTools's Java-Version-Check?
# If enabled, BuildTools is provided the '--disable-java-check' argument
disableJavaCheck: false
# Disables the check for existing files in the local maven repository
# Normally, a version is skipped if it is already installed
# in the local maven repository to speed up build time
forceRun: false
# The amount of builds allowed to run at the same time
# Set to '-1' to use system's cpu core count
threads: -1
```