2023-08-10 14:11:14 +02:00
|
|
|
name: Publish to Hangar and Modrinth
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
if: github.repository_owner == 'ViaVersion'
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
2023-09-05 12:48:36 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-08-10 14:11:14 +02:00
|
|
|
- name: Validate Gradle Wrapper
|
2024-05-12 21:47:20 +02:00
|
|
|
uses: gradle/actions/wrapper-validation@v3
|
2023-08-10 14:11:14 +02:00
|
|
|
- name: Set up JDK 17
|
2024-01-20 21:18:42 +01:00
|
|
|
uses: actions/setup-java@v4
|
2023-08-10 14:11:14 +02:00
|
|
|
with:
|
2023-08-10 14:48:22 +02:00
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: 17
|
2023-09-05 12:48:36 +02:00
|
|
|
check-latest: true
|
2023-08-10 14:11:14 +02:00
|
|
|
- name: Publish
|
|
|
|
env:
|
|
|
|
HANGAR_TOKEN: ${{ secrets.HANGAR_TOKEN }}
|
|
|
|
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
|
2023-08-11 04:28:38 +02:00
|
|
|
run: ./gradlew build modrinth publishAllPublicationsToHangar --stacktrace
|