3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 22:02:50 +02:00
ViaVersion/.github/workflows/publish.yml

28 Zeilen
742 B
YAML

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
uses: actions/checkout@v4
2023-08-10 14:11:14 +02:00
- name: Validate Gradle Wrapper
2024-03-22 20:38:03 +01:00
uses: gradle/wrapper-validation-action@v2
2023-08-10 14:11:14 +02:00
- name: Set up JDK 17
uses: actions/setup-java@v4
2023-08-10 14:11:14 +02:00
with:
distribution: 'temurin'
java-version: 17
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