Skip to content

fixed: wooden shovel was used as burnable instead of extinguishing th… #81

fixed: wooden shovel was used as burnable instead of extinguishing th…

fixed: wooden shovel was used as burnable instead of extinguishing th… #81

Workflow file for this run

# 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: ["forge-1.20*"]
pull_request:
branches: [ "*" ]
jobs:
build:
name: Build
uses: cech12/MinecraftModActions/.github/workflows/build.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: 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: Unlit Campfire
mod-id: unlitcampfire
version-prefix: 'forge-'
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: 417553
game-versions: |
1.20.1
release-type: release
loaders: |
neoforge
forge
version-prefix: '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: yENm0xnb
game-versions: |
1.20.1
release-type: release
loaders: |
neoforge
forge
version-prefix: 'forge-'
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
modrinth-token: ${{ secrets.MODRINTH_API_KEY }}