Mention how to apply the customised webapp #97
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: 3rd Party Addons PR Validator | |
on: | |
workflow_dispatch: | |
push: | |
# TODO: Re-enable this, to prevent running when not necessary | |
# paths: | |
# - 'assets/addon_browser/' | |
# - '.github/workflows/addons-pr-validator.yml' | |
pull_request: | |
# TODO: Re-enable this, to prevent running when not necessary | |
# paths: | |
# - 'assets/addon_browser/' | |
permissions: | |
contents: read | |
jobs: | |
addons-pr-validator: | |
name: 3rd Party Addons PR Validator | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Clone Validator Tool | |
run: git clone https://github.com/BlueMap-Minecraft/BlueMap3rdValidator.git | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 11 | |
check-latest: false | |
cache: gradle | |
cache-dependency-path: | | |
BlueMap3rdValidator/*.gradle* | |
BlueMap3rdValidator/**/gradle-wrapper.properties | |
- name: Build the Validator | |
run: | | |
cd BlueMap3rdValidator | |
./gradlew build --no-daemon | |
- name: Run the Validator | |
run: java -jar BlueMap3rdValidator/build/libs/BlueMap3rdValidator-1.0-all.jar "." |