🏭 Cut Mod Release #27
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: "Bugged" | |
metadataDescription: "Over 25 bugs added to completely change the speedrun! Think you can find them all? Check the website for hints" | |
metadataSupportedGames: "jak1" | |
metadataAuthors: "bintendo42,barg" | |
metadataTags: "speedrunning,challenge,gameplay-mod" | |
metadataWebsiteUrl: "https://jakmods.dev/bugged/buglist.html" | |
toolingRepo: "OpenGOAL-Mods/OG-Mod-Base" | |
gameAssetsDir: "game/assets" | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |