updated to Minecraft 1.21 (Fabric 0.100.3+1.21, Neoforge 21.0.42-beta… #128
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.21*"] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
name: Build | |
uses: cech12/MinecraftModActions/.github/workflows/build.yml@main | |
with: | |
java-version: 21 | |
# gametest: | |
# needs: build | |
# name: Game Test | |
# uses: cech12/MinecraftModActions/.github/workflows/gametest.yml@main | |
# with: | |
# java-version: 21 | |
codeql: | |
needs: build | |
name: CodeQL | |
uses: cech12/MinecraftModActions/.github/workflows/codeql-analysis.yml@main | |
with: | |
java-version: 21 | |
publish-github: | |
# needs: [ gametest, codeql ] | |
needs: codeql | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Github | |
uses: cech12/MinecraftModActions/.github/workflows/multi-publish-github.yml@main | |
with: | |
java-version: 21 | |
mod-name: Brick Furnace | |
mod-id: brickfurnace | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
publish-forge-on-curseforge: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Forge on Curseforge | |
uses: cech12/MinecraftModActions/.github/workflows/publish-curseforge.yml@main | |
with: | |
java-version: 21 | |
subproject: forge | |
title-prefix: forge- | |
curseforge-id: 363593 | |
game-versions: | | |
1.21 | |
release-type: release | |
loaders: | | |
forge | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }} | |
publish-forge-on-modrinth: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Forge on Modrinth | |
uses: cech12/MinecraftModActions/.github/workflows/publish-modrinth.yml@main | |
with: | |
java-version: 21 | |
subproject: forge | |
title-prefix: forge- | |
modrinth-id: yzHyAUSI | |
game-versions: | | |
1.21 | |
release-type: release | |
loaders: | | |
forge | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
modrinth-token: ${{ secrets.MODRINTH_API_KEY }} | |
publish-neoforge-on-curseforge: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Neoforge on Curseforge | |
uses: cech12/MinecraftModActions/.github/workflows/publish-curseforge.yml@main | |
with: | |
java-version: 21 | |
subproject: neoforge | |
title-prefix: neoforge- | |
curseforge-id: 363593 | |
game-versions: | | |
1.21 | |
release-type: release | |
loaders: | | |
neoforge | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }} | |
publish-neoforge-on-modrinth: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Neoforge on Modrinth | |
uses: cech12/MinecraftModActions/.github/workflows/publish-modrinth.yml@main | |
with: | |
java-version: 21 | |
subproject: neoforge | |
title-prefix: neoforge- | |
modrinth-id: yzHyAUSI | |
game-versions: | | |
1.21 | |
release-type: release | |
loaders: | | |
neoforge | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
modrinth-token: ${{ secrets.MODRINTH_API_KEY }} | |
publish-fabric-on-curseforge: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Fabric on Curseforge | |
uses: cech12/MinecraftModActions/.github/workflows/publish-curseforge.yml@main | |
with: | |
java-version: 21 | |
subproject: fabric | |
title-prefix: fabric- | |
curseforge-id: 363593 | |
game-versions: | | |
1.21 | |
release-type: release | |
loaders: | | |
fabric | |
quilt | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }} | |
publish-fabric-on-modrinth: | |
needs: publish-github | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Publish Fabric on Modrinth | |
uses: cech12/MinecraftModActions/.github/workflows/publish-modrinth.yml@main | |
with: | |
java-version: 21 | |
subproject: fabric | |
title-prefix: fabric- | |
modrinth-id: yzHyAUSI | |
game-versions: | | |
1.21 | |
release-type: release | |
loaders: | | |
fabric | |
quilt | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
modrinth-token: ${{ secrets.MODRINTH_API_KEY }} |