Skip to content

fix: commands no longer working after reload #48

fix: commands no longer working after reload

fix: commands no longer working after reload #48

Workflow file for this run

name: Java CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Our changelog generation requires the full git history
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: 21
- name: Build with Gradle
run: ./gradlew build
- name: Curseforge publish
run: ./gradlew makeChangelog publishMods -P curseforge_apikey=${{ secrets.CURSEFORGE_TOKEN }}