2024-07-21 15:30:56 +02:00
|
|
|
name: Publish to Hangar and Modrinth
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
if: github.repository_owner == 'ViaVersion'
|
2024-09-28 23:19:27 +02:00
|
|
|
runs-on: ubuntu-24.04
|
2024-07-21 15:30:56 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate Gradle Wrapper
|
2024-08-05 18:09:39 +02:00
|
|
|
uses: gradle/actions/wrapper-validation@v4
|
2024-07-21 15:30:56 +02:00
|
|
|
- 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
|