mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-12-22 16:38:20 +01:00
30 lines
778 B
YAML
30 lines
778 B
YAML
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
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Gradle
|
|
uses: gradle/actions/setup-gradle@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
|