Skip to content

🏭 Cut Mod Release #11

🏭 Cut Mod Release

🏭 Cut Mod Release #11

Workflow file for this run

name: 🏭 Cut Mod Release
on:
workflow_dispatch:
inputs:
bump:
description: 'Semver Bump Type'
required: true
default: 'patch'
type: choice
options:
- patch
- minor
- major
permissions:
contents: write
jobs:
cut_release:
name: "Cut Release"
uses: open-goal/mod-bundling-tools/.github/workflows/mod-bundler.yml@v1
with:
semverBump: ${{ inputs.bump }}
metadataName: "The FlutFlut Legacy"
metadataDescription: "Play the whole game on FlutFlut."
metadataSupportedGames: "jak1"
metadataAuthors: "zed,barg"
metadataTags: "speedrunning,challenge,gameplay-mod"
metadataWebsiteUrl: "https://github.com/OpenGOAL-Mods/OG-FlutFlut-Legacy/blob/main/README.md"
skipMacOS: true
skipLinux: true
toolingBinaryDir: "out/build/Release/bin"
gameAssetsDir: "game/assets"
copyEntireBinaryDir: true
secrets:
token: ${{ secrets.GITHUB_TOKEN }}