This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
Publish Mod #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Mod | |
on: | |
workflow_dispatch: | |
inputs: | |
publish: | |
description: Publish to Modrinth and CurseForge | |
required: true | |
default: "false" | |
patch: | |
description: Patch number, 0 for first (ex. Create 1.19.2 v0.5.0.g Patch N) | |
required: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
PUBLISH_SUFFIX: snapshots | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }} | |
PATCH_NUMBER: ${{ github.event.inputs.patch }} | |
PUBLISHING: ${{ github.event.inputs.publish }} | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- name: build | |
run: ./gradlew buildOrPublish | |
- name: capture build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: build/libs/ | |
- name: publish to Modrinth and CurseForge | |
if: ${{ github.event.inputs.publish }} | |
run: ./gradlew publishMod |