2021-09-26 15:19:14 +02:00
name : Publish Minecraft Mods
2021-09-25 08:41:13 +02:00
description : GitHub Action that helps you publish your Minecraft mods
author : Kir-Antipov
branding :
color : orange
icon : upload
inputs :
modrinth-id :
description : The ID of the Modrinth project to upload to
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2022-06-06 17:17:42 +02:00
modrinth-featured :
description : Indicates whether the version should be featured on Modrinth or not
required : false
default : ${undefined}
2022-06-07 20:17:45 +02:00
modrinth-unfeature-mode :
description : Determines the way automatic unfeaturing of older Modrinth versions works
required : false
default : ${undefined}
modrinth-token :
description : A valid token for the Modrinth API
2022-06-07 15:08:55 +02:00
required : false
default : ${undefined}
2021-09-25 08:41:13 +02:00
curseforge-id :
description : The ID of the CurseForge project to upload to
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
curseforge-token :
2021-09-26 15:19:14 +02:00
description : A valid token for the CurseForge API
2021-09-25 08:41:13 +02:00
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
github-tag :
description : The tag name of the release to upload assets to
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2022-06-07 20:17:45 +02:00
github-generate-changelog :
description : Indicates whether to automatically generate the changelog for this release. If changelog is specified, it will be pre-pended to the automatically generated notes. Unused if the GitHub Release already exists
required : false
default : ${undefined}
github-draft :
description : true to create a draft (unpublished) release, false to create a published one. Unused if the GitHub Release already exists
required : false
default : ${undefined}
github-prerelease :
description : true to identify the release as a prerelease, false to identify the release as a full release. Unused if the GitHub Release already exists
required : false
default : ${undefined}
github-commitish :
description : Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists
required : false
default : ${undefined}
github-discussion :
description : If specified, a discussion of the specified category is created and linked to the release. Unused if the GitHub Release already exists
required : false
default : ${undefined}
2021-09-25 08:41:13 +02:00
github-token :
2021-09-26 15:19:14 +02:00
description : A valid token for the GitHub API
2021-09-25 08:41:13 +02:00
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
files :
description : A glob of the files to upload
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
files-primary :
description : A glob of the primary files to upload
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
files-secondary :
description : A glob of the secondary files to upload
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
name :
description : The name of the version
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
version :
2021-09-26 15:19:14 +02:00
description : The version number
2021-09-25 08:41:13 +02:00
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
version-type :
description : The type of the release - alpha, beta, or release
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
changelog :
description : The changelog for this version
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
changelog-file :
description : A glob of the changelog file
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
loaders :
description : A list of supported mod loaders
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
game-versions :
description : A list of supported Minecraft versions
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-12-10 14:46:09 +01:00
dependencies :
description : A list of dependencies
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-10-01 15:13:08 +02:00
version-resolver :
description : Determines the way automatic game-versions resolvement works
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2021-09-25 08:41:13 +02:00
java :
description : A list of supported Java versions
required : false
2021-12-11 13:21:24 +01:00
default : ${undefined}
2022-01-12 16:16:19 +01:00
retry-attempts :
description : The maximum number of attempts to publish assets
required : false
default : 2
retry-delay :
description : Time delay between attempts to publish assets (in milliseconds)
required : false
default : 10000
2021-09-25 08:41:13 +02:00
runs :
using : node12
main : dist/index.js