{"id":22041880,"url":"https://github.com/nekofar/create-github-release","last_synced_at":"2025-06-17T22:36:06.861Z","repository":{"id":182500591,"uuid":"668598243","full_name":"nekofar/create-github-release","owner":"nekofar","description":"Automate GitHub Releases with Create Release Action","archived":false,"fork":false,"pushed_at":"2024-05-28T13:19:09.000Z","size":307,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-29T05:06:09.508Z","etag":null,"topics":["actions","github","github-actions"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nekofar.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"github":"nekofar","custom":"https://ud.me/nekofar.crypto"}},"created_at":"2023-07-20T07:22:07.000Z","updated_at":"2024-05-31T17:16:35.662Z","dependencies_parsed_at":"2023-10-26T07:33:12.118Z","dependency_job_id":"f60fff46-a19a-4171-aa13-8a9beb2d4997","html_url":"https://github.com/nekofar/create-github-release","commit_stats":null,"previous_names":["nekofar/create-github-release"],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/nekofar/create-github-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nekofar%2Fcreate-github-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nekofar%2Fcreate-github-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nekofar%2Fcreate-github-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nekofar%2Fcreate-github-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nekofar","download_url":"https://codeload.github.com/nekofar/create-github-release/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nekofar%2Fcreate-github-release/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260451379,"owners_count":23011254,"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":["actions","github","github-actions"],"created_at":"2024-11-30T12:09:59.801Z","updated_at":"2025-06-17T22:36:01.844Z","avatar_url":"https://github.com/nekofar.png","language":"Shell","readme":"# Create GitHub Release Action\n\n[![GitHub release (latest SemVer including pre-releases)](https://img.shields.io/github/v/release/nekofar/create-github-release?include_prereleases)](https://github.com/nekofar/create-github-release/releases)\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/nekofar/create-github-release/prepare.yml)](https://github.com/nekofar/create-github-release/actions/workflows/prepare.yml)\n[![GitHub](https://img.shields.io/github/license/nekofar/create-github-release)](https://github.com/nekofar/create-github-release/blob/master/LICENSE)\n[![Twitter Follow](https://img.shields.io/badge/follow-%40nekofar-1DA1F2?logo=twitter\u0026style=flat)](https://twitter.com/nekofar)\n[![Donate](https://img.shields.io/badge/donate-nekofar.crypto-a2b9bc?logo=ko-fi\u0026logoColor=white)](https://ud.me/nekofar.crypto)\n\nGitHub Action to create a new release with optional notes and files.\n\n## Usage\n\n```yaml\n# This workflow is named \"Create Release\"\nname: Create Release\n\n# The workflow is triggered on push events with tags that start with 'v'\non:\n  push:\n    tags:\n      - 'v*'\n\njobs:\n  create_release:\n    # Runs the job on the latest Ubuntu version\n    runs-on: ubuntu-latest\n\n    steps:\n      # Checks out a copy of your repository\n      - name: Checkout code\n        uses: actions/checkout@v2\n\n      - name: Create Release\n        # Uses the create-github-release action\n        uses: nekofar/create-github-release@v1\n        with:\n          # Defines the tag name for the release (e.g., v1.0.0).\n          tag: ${{ github.ref_name }}\n\n          # (Optional) Files to include in the release\n          files: |\n            dist/release-assets/*  \n\n          # (Optional) Defines the title of the release\n          title: Release ${{ github.ref_name }}\n\n          # (Optional) Allows multiline release notes\n          notes: |\n            This is the release notes for version ${{ github.ref_name }}.\n            Add any important information here.\n\n          # (Optional) Set to \"true\" to create a draft release. Default is \"false\"\n          draft: false\n\n          # (Optional) Set to \"true\" to create a pre-release. Default is \"false\"\n          prerelease: false\n\n          # (Optional) Set to \"true\" to mark this release as the latest. Default is \"false\"\n          latest: true\n\n          # (Optional) GitHub token for authentication. Default: ${{ github.token }}. If not provided, it will use the repository's default token\n          token: ${{ github.token }}          \n```\n\n## Options\n\nThe configuration used in the GitHub Action workflow includes several options for customization. Each of these\nconfiguration options has a specific use and can be tailored to suit your specific workflow needs. Below is a table\ndepicting these options:\n\n| Option       | Description                                                                                                                                         |\n|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|\n| `tag`        | This defines the tag name for the release (e.g., v1.0.0).                                                                                           |\n| `files`      | (Optional) This specifies any files that you wish to include in the release.                                                                        |\n| `title`      | (Optional) This defines the title of the release.                                                                                                   |\n| `notes`      | (Optional) This allows multiline release notes.                                                                                                     |\n| `draft`      | (Optional) This can be set to \"true\" to create a draft release. The default is \"false\".                                                             |\n| `prerelease` | (Optional) This can be set to \"true\" to create a pre-release. The default is \"false\".                                                               |\n| `latest`     | (Optional) This can be set to \"true\" to mark this release as the latest. The default is \"false\".                                                    |\n| `token`      | (Optional) This is the GitHub token for authentication. The default is `github.token`. If not provided, it will use the repository's default token. |\n\nEach option should be carefully considered to ensure that your workflow proceeds as expected.\n\n## Contributing\n\nWe value your input and help! If you're interested in contributing, please reference\nour [Contributing Guidelines](./CONTRIBUTING.md). Contributions aren't just about code - any bug reports, feedback, or\ndocumentation enhancements are welcomed. Thanks for helping to improve this project!\n","funding_links":["https://github.com/sponsors/nekofar","https://ud.me/nekofar.crypto"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnekofar%2Fcreate-github-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnekofar%2Fcreate-github-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnekofar%2Fcreate-github-release/lists"}