3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-07-26 17:08:05 +02:00
ViaBackwards/.github/workflows/publish.yml

28 Zeilen
742 B
YAML

2023-08-10 16:26:51 +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
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v2
2023-08-10 16:26:51 +02:00
- name: Set up JDK 17
uses: actions/setup-java@v4
2023-08-10 16:26:51 +02:00
with:
distribution: 'temurin'
java-version: 17
check-latest: true
2023-08-10 16:26:51 +02:00
- name: Publish
env:
HANGAR_TOKEN: ${{ secrets.HANGAR_TOKEN }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
2023-08-11 03:42:13 +02:00
run: ./gradlew build modrinth publishAllPublicationsToHangar --stacktrace