mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-11-28 12:45:25 +01:00
608c5cbb58
* Update Ubuntu to 24.04, JDK to 21.0.3. * Update ViaVersion to 4.10.3-SNAPSHOT. This update removes invalid chunk entities for 1.20.5 clients basically.
24 lines
707 B
YAML
24 lines
707 B
YAML
name: Publish to CurseForge and Modrinth
|
|
on: [workflow_dispatch] # Manual trigger
|
|
|
|
jobs:
|
|
publish:
|
|
if: github.repository_owner == 'ViaVersion'
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/actions/wrapper-validation@v3
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 21
|
|
check-latest: true
|
|
- name: Build and Publish
|
|
env:
|
|
CURSEFORGE_API_KEY: ${{ secrets.CREEPER_CF }}
|
|
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
|
|
run: ./gradlew curseforge modrinth
|