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}
|
2021-09-25 08:41:13 +02:00
|
|
|
modrinth-token:
|
2021-09-26 15:19:14 +02:00
|
|
|
description: A valid token for the Modrinth 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
|
|
|
|
|
|
|
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}
|
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}
|
2021-09-25 08:41:13 +02:00
|
|
|
runs:
|
|
|
|
using: node12
|
|
|
|
main: dist/index.js
|