1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-28 03:09:08 +00:00

Remove debug print, validate that entity definitions have been registered, setup publishing

This commit is contained in:
onebeastchris
2025-12-01 15:53:48 +01:00
parent f3070f7509
commit 8a79001b4b
4 changed files with 31 additions and 16 deletions

View File

@@ -51,7 +51,16 @@ jobs:
bootstrap/viaproxy/build/libs/Geyser-ViaProxy.jar
- name: Publish to Maven Repository
if: ${{ success() && github.repository == 'GeyserMC/Geyser' && github.ref_name == 'master' }}
if: >-
${{
success() &&
github.repository == 'GeyserMC/Geyser' &&
(
github.ref_name == 'master' ||
(github.event.pull_request &&
contains(github.event.pull_request.labels.*.name, 'PR: Needs Testing'))
)
}}
run: ./gradlew publish
env:
BUILD_NUMBER: ${{ steps.release-info.outputs.curentRelease }}