mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2025-02-19 21:21:22 +01:00
23 lines
579 B
YAML
23 lines
579 B
YAML
|
name: Prepare Workspace
|
||
|
description: Prepares the workspace for compilation
|
||
|
|
||
|
inputs:
|
||
|
maven_username:
|
||
|
required: false
|
||
|
description: The username to use for the Maven server
|
||
|
maven_password:
|
||
|
required: false
|
||
|
description: The password to use for the Maven server
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- uses: craftaro/GH-Commons/.github/actions/setup_workspace@master
|
||
|
with:
|
||
|
maven_username: ${{ inputs.maven_username }}
|
||
|
maven_password: ${{ inputs.maven_password }}
|
||
|
|
||
|
- uses: SpraxDev/Action-SpigotMC@v4
|
||
|
with:
|
||
|
versions: 1.20.1
|