{"id":28107737,"url":"https://github.com/rczaka/create-release","last_synced_at":"2025-05-14T01:33:57.776Z","repository":{"id":190204544,"uuid":"677859480","full_name":"rczaka/create-release","owner":"rczaka","description":"GitHub Action for creating releases","archived":false,"fork":false,"pushed_at":"2024-07-05T14:17:29.000Z","size":235,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-22T12:58:49.809Z","etag":null,"topics":["github-action","github-release"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rczaka.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2023-08-12T22:05:22.000Z","updated_at":"2024-07-25T19:56:58.000Z","dependencies_parsed_at":"2023-12-27T14:46:01.457Z","dependency_job_id":"b2252646-532d-4a4c-8daf-f555eb1a13de","html_url":"https://github.com/rczaka/create-release","commit_stats":null,"previous_names":["dae-ne/create-release","rczaka/create-release"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rczaka%2Fcreate-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rczaka%2Fcreate-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rczaka%2Fcreate-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rczaka%2Fcreate-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rczaka","download_url":"https://codeload.github.com/rczaka/create-release/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254050893,"owners_count":22006377,"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":["github-action","github-release"],"created_at":"2025-05-14T01:33:51.144Z","updated_at":"2025-05-14T01:33:57.755Z","avatar_url":"https://github.com/rczaka.png","language":"TypeScript","readme":"# create-release\n\nGitHub Action for creating releases on GitHub. This action is a wrapper around the [Create a release](https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release) endpoint in the [GitHub REST API](https://docs.github.com/en/rest).\n\n## Inputs\n\n- `token` - The GitHub token to use for authentication. When not specified, GITHUB_TOKEN env variable is used\n- `tag-name` - The name of the tag to create\n- `target-commitish` - 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. Default: the repository's default branch (usually **main**)\n- `name` - The name of the release\n- `body` - Text describing the contents of the tag\n- `draft` - **true** to create a draft (unpublished) release, **false** to create a published one. Default: **false**\n- `prerelease` - **true** to identify the release as a prerelease. **false** to identify the release as a full release. Default: **false**\n- `discussion-category-name` - The name of the discussion category to associate with this release\n- `generate-release-notes` - **true** to generate release notes for the release. **false** to skip the generation of release notes. Default: **false**\n- `make-latest` - **true** to update the repository's default branch with the newly created tag. **false** to skip updating the default branch. Default: **false**\n\n## Environment variables\n\n- `GITHUB_TOKEN` - The GitHub token to use for authentication. It's used when `token` input is not specified\n\n## Outputs\n\n- `id` - The ID of the release\n- `node-id` - The Node ID of the release\n- `url` - The URL of the release\n- `html-url` - The HTML URL of the release\n- `assets-url` - The URL of the release assets\n- `upload-url` - The URL to upload release assets to\n- `tarball-url` - The URL of the release tarball\n- `zipball-url` - The URL of the release zipball\n- `tag-name` - The name of the tag that was created\n- `target-commitish` - The commitish value that determines where the Git tag is created from\n- `name` - The name of the release\n- `body` - Text describing the contents of the tag\n- `draft` - **true** if the release is a draft (unpublished) release, **false** if the release is published\n- `prerelease` - **true** if the release is identified as a prerelease release, **false** if the release is identified as a full release\n- `created-at` - The date and time the release was created\n- `published-at` - The date and time the release was published at\n\n## Example\n\n```yml\nname: Create release\n\non:\n  push:\n    tags:\n      - 'v*'\n\njobs:\n  build:\n    name: Create release\n    permissions:\n      contents: write\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v4\n      - name: Create Release\n        id: create_release\n        uses: dae-ne/create-release@v2\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          tag-name: ${{ github.ref_name }}\n          name: Release ${{ github.ref_name }}\n      - run: echo ${{ steps.create_release.outputs.id }}\n```\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frczaka%2Fcreate-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frczaka%2Fcreate-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frczaka%2Fcreate-release/lists"}