Skip to content

Publish Release

Publish Release #23

Workflow file for this run

name: Publish Release
on:
workflow_dispatch:
inputs:
platform:
type: choice
description: Platform
options:
- both
- fabric
- neoforge
jobs:
build:
runs-on: ubuntu-latest
env:
RELEASE_BUILD: true
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }}
PLATFORM: ${{ inputs.platform }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: temurin
cache: gradle
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build & Publish
run: ./gradlew numismaticsPublish