Engine #2051
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 on GitHub | |
on: [ pull_request, workflow_dispatch, push ] | |
env: | |
JAVA_VERSION: 17 | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/release' | |
steps: | |
- name: Check Environment Variables | |
run: env | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Make Gradle Wrapper Executable | |
if: ${{ runner.os != 'Windows' }} | |
run: chmod +x ./gradlew | |
- name: Run Datagen | |
run: ./gradlew runDatagen | |
- name: Build | |
run: ./gradlew clean build | |
- name: Publish (CurseForge/Modrinth/GitHub) | |
uses: Kir-Antipov/mc-publish@v3.3 #The specified MC-Publish GitHub Action in the version 3.2 | |
with: | |
changelog-file: CHANGELOG.md | |
# curseforge-id: 123456 #The id of your CurseForge project | |
# curseforge-token: "${{env.CURSEFORGE_TOKEN}}" | |
# modrinth-id: 1q2w3e4r #The id of your modrinth project | |
# modrinth-token: "${{env.MODRINTH_TOKEN}}" | |
github-token: "${{secrets.GITHUB_TOKEN}}" | |
github-generate-changelog: true | |
version-type: release | |
loaders: fabric | |
java: "${{env.JAVA_VERSION}}" |