🏭 Cut Mod Release #13
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: 🏭 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: "Dark Jak Renegade" | |
metadataDescription: "Infinite Dark Jak, plus you can rolljump, use guns, vehicles, jetboard, etc. Hold L2 to use Dark Bomb/Dark Blast, or to undo Dark Giant. Reboot in debug mode to unlock everything at the start." | |
metadataSupportedGames: "jak2" | |
metadataAuthors: "barg" | |
metadataTags: "gameplay-mod" | |
metadataWebsiteUrl: "https://github.com/OpenGOAL-Mods/OG-Dark-Jak/blob/main/README.md" | |
skipMacOS: true | |
skipLinux: true | |
toolingBinaryDir: "out/build/Release/bin" | |
gameAssetsDir: "game/assets" | |
copyEntireBinaryDir: true | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |