Move config option check for player face fix into packet handlers (#913) #348
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: Publish to Hangar and Modrinth | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
jobs: | |
publish: | |
if: github.repository_owner == 'ViaVersion' | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
check-latest: true | |
- name: Publish | |
env: | |
HANGAR_TOKEN: ${{ secrets.HANGAR_TOKEN }} | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
run: ./gradlew build modrinth publishAllPublicationsToHangar --stacktrace |