fixed JEI loading errors since 15.20.0.100 #98
Workflow file for this run
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
# This workflow builds the project on each push and pull request and publish it on new tags | |
name: CI/CD | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "*" ] | |
tags: ["1.20*"] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
name: Build | |
uses: cech12/MinecraftModActions/.github/workflows/build.yml@main | |
with: | |
java-version: 17 | |
gametest: | |
needs: build | |
name: Game Test | |
uses: cech12/MinecraftModActions/.github/workflows/gametest.yml@main | |
with: | |
java-version: 17 | |
codeql: | |
needs: build | |
name: CodeQL | |
uses: cech12/MinecraftModActions/.github/workflows/codeql-analysis.yml@main | |
with: | |
java-version: 17 | |
publish-github: | |
needs: [ gametest, codeql ] | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Github | |
uses: cech12/MinecraftModActions/.github/workflows/publish-github.yml@main | |
with: | |
java-version: 17 | |
mod-name: Solar Cooker | |
mod-id: solarcooker | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
publish-curseforge: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Curseforge | |
uses: cech12/MinecraftModActions/.github/workflows/publish-curseforge.yml@main | |
with: | |
java-version: 17 | |
curseforge-id: 436874 | |
game-versions: | | |
1.20.1 | |
release-type: release | |
loaders: | | |
neoforge | |
forge | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }} | |
publish-modrinth: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Modrinth | |
uses: cech12/MinecraftModActions/.github/workflows/publish-modrinth.yml@main | |
with: | |
java-version: 17 | |
modrinth-id: IsSapAeq | |
game-versions: | | |
1.20.1 | |
release-type: release | |
loaders: | | |
neoforge | |
forge | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
modrinth-token: ${{ secrets.MODRINTH_API_KEY }} |