mc-publish/action.yml

67 lines
1.7 KiB
YAML
Raw Permalink Normal View History

2021-09-26 09:19:14 -04:00
name: Publish Minecraft Mods
2021-09-25 02:41:13 -04: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
modrinth-token:
2021-09-26 09:19:14 -04:00
description: A valid token for the Modrinth API
2021-09-25 02:41:13 -04:00
required: false
curseforge-id:
description: The ID of the CurseForge project to upload to
required: false
curseforge-token:
2021-09-26 09:19:14 -04:00
description: A valid token for the CurseForge API
2021-09-25 02:41:13 -04:00
required: false
github-tag:
description: The tag name of the release to upload assets to
required: false
github-token:
2021-09-26 09:19:14 -04:00
description: A valid token for the GitHub API
2021-09-25 02:41:13 -04:00
required: false
files:
description: A glob of the files to upload
required: false
files-primary:
description: A glob of the primary files to upload
required: false
files-secondary:
description: A glob of the secondary files to upload
required: false
name:
description: The name of the version
required: false
version:
2021-09-26 09:19:14 -04:00
description: The version number
2021-09-25 02:41:13 -04:00
required: false
version-type:
description: The type of the release - alpha, beta, or release
required: false
changelog:
description: The changelog for this version
required: false
changelog-file:
description: A glob of the changelog file
required: false
loaders:
description: A list of supported mod loaders
required: false
game-versions:
description: A list of supported Minecraft versions
required: false
java:
description: A list of supported Java versions
required: false
runs:
using: node12
main: dist/index.js