Skip to content

chore: fix CI issues #39

chore: fix CI issues

chore: fix CI issues #39

Workflow file for this run

name: Java CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
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 curseforge -P curseforge_apikey=${{ secrets.CURSEFORGE_TOKEN }}