{"id":13889172,"url":"https://github.com/HSGamer/MCReleaser","last_synced_at":"2025-07-17T01:31:00.056Z","repository":{"id":222306666,"uuid":"755196828","full_name":"HSGamer/MCReleaser","owner":"HSGamer","description":"A program to publish artifacts to multiple Minecraft-related platforms","archived":false,"fork":false,"pushed_at":"2024-11-04T14:01:51.000Z","size":147,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-11-04T15:18:28.369Z","etag":null,"topics":["docker","github","hangar","java","minecraft","modrinth","papermc","polymart","spigot","spigot-api"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HSGamer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"HSGamer","patreon":"hsgamer","open_collective":null,"ko_fi":"hsgamer_mc","tidelift":null,"community_bridge":null,"liberapay":"HSGamer","issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://paypal.me/HSGamer1234"]}},"created_at":"2024-02-09T16:18:22.000Z","updated_at":"2024-11-04T14:01:48.000Z","dependencies_parsed_at":"2024-02-13T15:14:10.671Z","dependency_job_id":"98efd1ee-ff5a-480d-b2bd-df794701a0e9","html_url":"https://github.com/HSGamer/MCReleaser","commit_stats":null,"previous_names":["hsgamer/mcreleaser"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FMCReleaser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FMCReleaser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FMCReleaser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FMCReleaser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HSGamer","download_url":"https://codeload.github.com/HSGamer/MCReleaser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226189114,"owners_count":17587643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","github","hangar","java","minecraft","modrinth","papermc","polymart","spigot","spigot-api"],"created_at":"2024-08-06T14:00:43.886Z","updated_at":"2024-11-24T16:31:13.072Z","avatar_url":"https://github.com/HSGamer.png","language":"Java","funding_links":["https://github.com/sponsors/HSGamer","https://patreon.com/hsgamer","https://ko-fi.com/hsgamer_mc","https://liberapay.com/HSGamer","https://paypal.me/HSGamer1234"],"categories":["Project/version management tools"],"sub_categories":["In-game"],"readme":"# MCReleaser\n\nA program to publish artifacts to multiple Minecraft-related platforms\n\n## Usage\n\n### CLI\n\n```shell\njava \n    -Dname=\"Artifact Name\"\n    -Dversion=\"Artifact Version\"\n    -Ddescription=\"Artifact Description\"\n    -DgameVersions=\"Game Versions\"\n    -jar mcreleaser.jar\n```\n\n\u003e Use `-D` to set environment variables as properties in camel case, e.g., `GITHUB_TOKEN` becomes `-DgithubToken`\n\n### Docker\n\n```shell\ndocker run\n    -e NAME=\"Artifact Name\"\n    -e VERSION=\"Artifact Version\"\n    -e DESCRIPTION=\"Artifact Description\"\n    -e GAME_VERSIONS=\"Game Versions\"\n    ghcr.io/hsgamer/mcreleaser:master\n```\n\n### Github Actions\n\nCheck [action-mcreleaser](https://github.com/HSGamer/action-mcreleaser)\n\n## Environment Variables\n\n### Common\n\n| Name                   | Description                                  | Required | Default |\n|------------------------|----------------------------------------------|----------|---------|\n| `NAME`                 | The name of the artifact                     | Yes      |         |\n| `VERSION`              | The version of the artifact                  | Yes      |         |\n| `DESCRIPTION`          | The description of the artifact              | Yes      |         |\n| `ANNOUNCE_MISSING_KEY` | Whether to announce the missing variables    | No       | `false` |\n| `GAME_VERSIONS`        | The game versions that the artifact supports | No       |         |\n| `GAME_VERSION_TYPE`    | The type of the game version to filter       | No       |         |\n\n### [Github](https://github.com/)\n\n| Name                | Description                                     | Required | Default |\n|---------------------|-------------------------------------------------|----------|---------|\n| `GITHUB_TOKEN`      | The Github token to publish the artifact        | Yes      |         |\n| `GITHUB_REPOSITORY` | The Github repository to publish the artifact   | Yes      |         |\n| `GITHUB_REF`        | The Github ref to publish the artifact          | Yes      |         |\n| `GITHUB_DRAFT`      | Whether to publish the artifact as a draft      | No       | `false` |\n| `GITHUB_PRERELEASE` | Whether to publish the artifact as a prerelease | No       | `false` |\n\n### [Hangar](https://hangar.papermc.io/)\n\n| Name                   | Description                                                                       | Required | Default |\n|------------------------|-----------------------------------------------------------------------------------|----------|---------|\n| `HANGAR_KEY`           | The Hangar API key to publish the artifact                                        | Yes      |         |\n| `HANGAR_PROJECT`       | The Hangar project to publish the artifact                                        | Yes      |         |\n| `HANGAR_CHANNEL`       | The Hangar channel to publish the artifact                                        | Yes      |         |\n| `HANGAR_GAME_VERSIONS` | The game versions that the artifact supports \u003cbr\u003e Will use `GAME_VERSIONS` if set | Yes      |         |\n| `HANGAR_PLATFORM`      | The Hangar platform to publish the artifact                                       | No       | Release |\n| `HANGAR_DEPENDENCIES`  | The dependencies of the artifact                                                  | No       |         |\n\n### [Modrinth](https://modrinth.com/)\n\n| Name                         | Description                                                                       | Required | Default |\n|------------------------------|-----------------------------------------------------------------------------------|----------|---------|\n| `MODRINTH_TOKEN`             | The Modrinth token to publish the artifact                                        | Yes      |         |\n| `MODRINTH_PROJECT`           | The Modrinth project to publish the artifact                                      | Yes      |         |\n| `MODRINTH_GAME_VERSIONS`     | The game versions that the artifact supports \u003cbr\u003e Will use `GAME_VERSIONS` if set | Yes      |         |\n| `MODRINTH_GAME_VERSION_TYPE` | The type of the game version to filter \u003cbr\u003e Will use `GAME_VERSION_TYPE` if set   | No       | Release |\n| `MODRINTH_LOADERS`           | The loaders that the artifact supports                                            | Yes      |         |\n| `MODRINTH_VERSION_TYPE`      | The Modrinth version type to publish the artifact                                 | No       | Release |\n| `MODRINTH_DEPENDENCIES`      | The dependencies of the artifact                                                  | No       |         |\n| `MODRINTH_FEATURED`          | Whether to feature the artifact                                                   | No       | `true`  |\n| `MODRINTH_UNFEATURE`         | Whether to unfeature other versions                                               | No       | `true`  |\n\n### [Polymart](https://polymart.org/)\n\n| Name                | Description                                   | Required | Default |\n|---------------------|-----------------------------------------------|----------|---------|\n| `POLYMART_KEY`      | The Polymart API key to publish the artifact  | Yes      |         |\n| `POLYMART_RESOURCE` | The Polymart resource to publish the artifact | Yes      |         |\n| `POLYMART_BETA`     | Whether to publish the artifact as a beta     | No       | `false` |\n| `POLYMART_SNAPSHOT` | Whether to publish the artifact as a snapshot | No       | `false` |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHSGamer%2FMCReleaser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHSGamer%2FMCReleaser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHSGamer%2FMCReleaser/lists"}