{"id":11772175,"name":"LizardByte/create-release-action","ecosystem":"actions","description":"A reusable action to create a GitHub release.","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/LizardByte/create-release-action","keywords_array":["github-action"],"namespace":"LizardByte","versions_count":33,"first_release_published_at":"2023-10-21T02:30:29.000Z","latest_release_published_at":"2025-06-12T01:34:19.000Z","latest_release_number":"v2025.612.13419","last_synced_at":"2026-04-11T17:16:54.239Z","created_at":"2025-06-07T21:17:12.651Z","updated_at":"2026-04-11T17:16:54.239Z","registry_url":"https://github.com/LizardByte/create-release-action","install_command":null,"documentation_url":null,"metadata":{"name":"Create Release","description":"A reusable action to create a GitHub release.","author":"LizardByte","inputs":{"allowUpdates":{"description":"An optional flag which indicates if we should update a release if it already exists.","required":false,"default":"true"},"artifactErrorsFailBuild":{"description":"An optional flag which indicates if we should fail the build if there are errors with the artifacts.","required":false,"default":"false"},"artifacts":{"description":"The artifacts to upload.","required":false,"default":"*artifacts/*"},"body":{"description":"The body of the release.","required":false,"default":""},"deleteOtherPreReleases":{"description":"Whether to delete other pre-releases.","required":false,"default":"true"},"deletePreReleaseTags":{"description":"Whether to delete other pre-releases tags.","required":false,"default":"true"},"generateReleaseNotes":{"description":"Indicates if release notes should be automatically generated.","required":false,"default":"true"},"keepPreReleaseCount":{"description":"The number of pre-releases to keep. The default is 2 incase there are in process downloads.","required":false,"default":"2"},"name":{"description":"The version to create.","required":true},"prerelease":{"description":"Whether the release is a prerelease.","required":false,"default":"true"},"sleepDuration":{"description":"The duration to sleep in seconds before deleting tags.","required":false,"default":"15"},"tag":{"description":"The tag to create.","required":true},"token":{"description":"Github Token.","required":true}},"runs":{"using":"composite","steps":[{"name":"Create/Update GitHub Release","if":"github.repository == 'LizardByte/create-release-action' || (github.event_name == 'push' \u0026\u0026 github.ref == 'refs/heads/master')","uses":"ncipollo/release-action@v1.16.0","with":{"allowUpdates":"${{ inputs.allowUpdates }}","artifactErrorsFailBuild":"${{ inputs.artifactErrorsFailBuild }}","artifacts":"${{ inputs.artifacts }}","body":"${{ inputs.body }}","commit":"${{ github.sha }}","generateReleaseNotes":"${{ inputs.generateReleaseNotes }}","name":"${{ inputs.name }}","prerelease":"${{ inputs.prerelease }}","tag":"${{ inputs.tag }}","token":"${{ inputs.token }}"}},{"name":"Sleep","if":"inputs.deleteOtherPreReleases == 'true' \u0026\u0026 (github.event_name == 'push' \u0026\u0026 github.ref == 'refs/heads/master')","shell":"bash","run":"sleep 30"},{"name":"Delete Other PreReleases","if":"inputs.deleteOtherPreReleases == 'true' \u0026\u0026 (github.event_name == 'push' \u0026\u0026 github.ref == 'refs/heads/master')","uses":"actions/github-script@v7","env":{"DELETE_TAGS":"${{ inputs.deletePreReleaseTags }}","KEEP_LATEST":"${{ inputs.keepPreReleaseCount }}","SLEEP_DURATION":"${{ inputs.sleepDuration }}"},"with":{"github-token":"${{ inputs.token }}","script":"// process input\nconst DELETE_TAGS = process.env.DELETE_TAGS.toLowerCase() === 'true';\nconst KEEP_LATEST = parseInt(process.env.KEEP_LATEST, 10);\nconst SLEEP_DURATION = parseInt(process.env.SLEEP_DURATION, 10);\n\nconsole.log(`DELETE_TAGS: ${DELETE_TAGS}`);\nconsole.log(`KEEP_LATEST: ${KEEP_LATEST}`);\n\nlet regexPattern = new RegExp('^v(\\\\d{4,})\\\\.(\\\\d{1,4})\\\\.(\\\\d{1,6})(\\\\.(\\\\d{1,2}))?');\n\n// list releases\nconst repoOpts = github.rest.repos.listReleases.endpoint.merge({\n    owner: context.repo.owner,\n    repo: context.repo.repo,\n});\nconst allReleases = await github.paginate(repoOpts);\n\nallReleases.forEach(release =\u003e {\n  console.log(`Release: ${release.tag_name}`);\n  console.log(`Is pre-release: ${release.prerelease}`);\n  console.log(`Matches regex: ${regexPattern.test(release.tag_name)}`);\n});\n\nlet preReleases = allReleases.filter(release =\u003e release.prerelease \u0026\u0026 regexPattern.test(release.tag_name));\nconsole.log('Matched Pre-release tags:', preReleases.map(release =\u003e release.tag_name));\n\n// sort by tag/version number (e.g. v1.2.3 or v1.2.3.4)\npreReleases.sort((a, b) =\u003e {\n  const aParts = a.tag_name.match(/\\d+/g).map(Number);\n  const bParts = b.tag_name.match(/\\d+/g).map(Number);\n  for (let i = 0; i \u003c Math.max(aParts.length, bParts.length); i++) {\n    if (aParts[i] === undefined) return -1;\n    if (bParts[i] === undefined) return 1;\n    if (aParts[i] \u003c bParts[i]) return -1;\n    if (aParts[i] \u003e bParts[i]) return 1;\n  }\n  return 0;\n});\n\n// Output sorted pre-releases\nconsole.log('Sorted Pre-release tags:', preReleases.map(release =\u003e release.tag_name));\n\n// delete all but the last n pre-releases\nfor (let i = 0; i \u003c preReleases.length - KEEP_LATEST; i++) {\n  const release = preReleases[i];\n  console.log(`Deleting release: ${release.tag_name}`);\n  try {\n    await github.rest.repos.deleteRelease({\n      owner: context.repo.owner,\n      repo: context.repo.repo,\n      release_id: release.id\n    });\n  } catch (error) {\n    console.error(`Failed to delete release: ${release.tag_name}`);\n    console.error(error);\n  }\n}\n\n// sleep to allow any on release deleted event workflow runs to be created\n// if the tag is deleted before the workflow run is created, the run will fail to be created\nawait new Promise(resolve =\u003e setTimeout(resolve, SLEEP_DURATION * 1000));\n\nif (DELETE_TAGS) {\n  for (let i = 0; i \u003c preReleases.length - KEEP_LATEST; i++) {\n    const release = preReleases[i];\n    console.log(`Deleting tag: ${release.tag_name}`);\n    try {\n      await github.rest.git.deleteRef({\n        owner: context.repo.owner,\n        repo: context.repo.repo,\n        ref: `tags/${release.tag_name}`\n      });\n    } catch (error) {\n      console.error(`Failed to delete tag: ${release.tag_name}`);\n      console.error(error);\n    }\n  }\n}\n"}}]},"default_branch":"master","path":null},"repo_metadata":{"id":202685433,"uuid":"707880850","full_name":"LizardByte/create-release-action","owner":"LizardByte","description":"Reusable action for LizardByte to publish a GitHub release.","archived":true,"fork":false,"pushed_at":"2025-06-30T23:16:59.000Z","size":66,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T06:07:53.638Z","etag":null,"topics":["github-action"],"latest_commit_sha":null,"homepage":"","language":null,"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/LizardByte.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},"funding":{"github":["LizardByte"],"patreon":"LizardByte","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://paypal.me/ReenigneArcher"]}},"created_at":"2023-10-20T22:01:30.000Z","updated_at":"2025-06-30T23:17:04.000Z","dependencies_parsed_at":"2023-11-29T10:26:12.752Z","dependency_job_id":"3a6f8f43-249b-4561-a679-8d20aea6be04","html_url":"https://github.com/LizardByte/create-release-action","commit_stats":null,"previous_names":["lizardbyte/create-release-action"],"tags_count":33,"template":false,"template_full_name":"LizardByte/template-base","purl":"pkg:github/LizardByte/create-release-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LizardByte","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008577,"owners_count":26084480,"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","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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"},"owner_record":{"login":"LizardByte","name":"LizardByte","uuid":"84790584","kind":"organization","description":"Self-hosted cloud gaming.","email":null,"website":"https://app.lizardbyte.dev","location":"United States of America","twitter":"LizardByteDev","company":null,"icon_url":"https://avatars.githubusercontent.com/u/84790584?v=4","repositories_count":41,"last_synced_at":"2025-09-26T04:31:27.802Z","metadata":{"has_sponsors_listing":true,"funding":{"github":["LizardByte"],"patreon":"LizardByte","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://paypal.me/ReenigneArcher"]}},"html_url":"https://github.com/LizardByte","funding_links":["https://github.com/sponsors/LizardByte","https://patreon.com/LizardByte","https://paypal.me/ReenigneArcher"],"total_stars":13194,"followers":790,"following":0,"created_at":"2022-11-14T06:55:30.295Z","updated_at":"2025-09-26T04:31:27.812Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LizardByte","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LizardByte/repositories"},"tags":[{"name":"v2025.612.13419","sha":"66d4909775d5b2b78828fecbfdae887160117c13","kind":"commit","published_at":"2025-06-12T01:34:19.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2025.612.13419","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2025.612.13419","dependencies_parsed_at":"2025-06-13T06:33:06.259Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2025.612.13419","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.612.13419","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.612.13419/manifests"},{"name":"v2025.612.13049","sha":"5e99a0f29e2c7239c3fde6c9b5726373339e6642","kind":"commit","published_at":"2025-06-12T01:30:49.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2025.612.13049","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2025.612.13049","dependencies_parsed_at":"2025-06-13T06:33:07.863Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2025.612.13049","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.612.13049","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.612.13049/manifests"},{"name":"v2025.426.1549","sha":"8aaf746a794a046308e3563bde30d1cd34d00e6c","kind":"commit","published_at":"2025-04-26T00:15:49.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2025.426.1549","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2025.426.1549","dependencies_parsed_at":"2025-06-09T04:21:34.928Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2025.426.1549","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.426.1549","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.426.1549/manifests"},{"name":"v2025.102.13208","sha":"b677a8728bb663f985f2a1a80a914f81235b45b5","kind":"commit","published_at":"2025-01-02T01:32:08.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2025.102.13208","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2025.102.13208","dependencies_parsed_at":"2025-06-09T04:21:34.878Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2025.102.13208","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.102.13208","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2025.102.13208/manifests"},{"name":"v2024.919.143026","sha":"5cf1637547f650771ef0e9bfb0a33d9253820099","kind":"commit","published_at":"2024-09-19T14:30:26.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.919.143026","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.919.143026","dependencies_parsed_at":"2025-06-09T04:21:35.223Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.919.143026","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.919.143026","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.919.143026/manifests"},{"name":"v2024.614.221009","sha":"9fe3810e10c95848273096bcfc85a8e000c3824b","kind":"commit","published_at":"2024-06-14T22:10:07.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.614.221009","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.614.221009","dependencies_parsed_at":"2025-06-09T04:21:34.934Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.614.221009","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.614.221009","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.614.221009/manifests"},{"name":"v2024.611.132610","sha":"9c6ebff575c7ede82f717414d529a059c80bf284","kind":"commit","published_at":"2024-06-11T13:26:08.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.611.132610","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.611.132610","dependencies_parsed_at":"2025-06-09T04:21:35.132Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.611.132610","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.611.132610","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.611.132610/manifests"},{"name":"v2024.609.5014","sha":"320d8099dd3ad61647c4d59726174ab5a5ed4973","kind":"commit","published_at":"2024-06-09T00:50:12.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.609.5014","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.609.5014","dependencies_parsed_at":"2025-06-09T04:21:34.405Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.609.5014","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.609.5014","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.609.5014/manifests"},{"name":"v2024.608.160245","sha":"9a022a2c3d454242d0526f225a8687eed3f9f463","kind":"commit","published_at":"2024-06-08T16:02:43.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.608.160245","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.608.160245","dependencies_parsed_at":"2025-06-09T04:21:35.124Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.608.160245","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.608.160245","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.608.160245/manifests"},{"name":"v2024.608.155635","sha":"4754f1bbe17df10f62f8a191f7e9b44ff32b9c02","kind":"commit","published_at":"2024-06-08T15:56:33.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.608.155635","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.608.155635","dependencies_parsed_at":"2025-06-09T04:21:34.166Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.608.155635","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.608.155635","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.608.155635/manifests"},{"name":"v2024.524.143912","sha":"3e3985fd731bfc1fa30452a834537d087a7f60cf","kind":"commit","published_at":"2024-05-24T14:39:10.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.524.143912","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.524.143912","dependencies_parsed_at":"2025-06-09T04:21:34.638Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.524.143912","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.524.143912","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.524.143912/manifests"},{"name":"v2024.520.211408","sha":"d7d68394b2a886225e0db765e1235eb209770491","kind":"commit","published_at":"2024-05-20T21:14:06.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.520.211408","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.520.211408","dependencies_parsed_at":"2025-06-09T04:21:35.214Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.520.211408","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.520.211408","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.520.211408/manifests"},{"name":"v2024.520.193838","sha":"cde6297651972e409cdcc2e8b363d7e6b2a7918a","kind":"commit","published_at":"2024-05-20T19:38:35.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.520.193838","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.520.193838","dependencies_parsed_at":"2025-06-09T04:21:34.962Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.520.193838","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.520.193838","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.520.193838/manifests"},{"name":"pr-140-9163495120","sha":"ffa93a3a04942a54beee625aae9c2869f0f14fce","kind":"commit","published_at":"2024-05-20T18:47:15.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/pr-140-9163495120","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/pr-140-9163495120","dependencies_parsed_at":"2025-06-09T04:21:34.352Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@pr-140-9163495120","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/pr-140-9163495120","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/pr-140-9163495120/manifests"},{"name":"v2024.520.180003","sha":"4ce74bf681c6c305b698f86be887d87c1f148a42","kind":"commit","published_at":"2024-05-20T18:00:00.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.520.180003","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.520.180003","dependencies_parsed_at":"2025-06-09T04:21:34.385Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.520.180003","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.520.180003","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.520.180003/manifests"},{"name":"pr-127-9143657910","sha":"fb82fe3884da6088b2e3b4bdd772dad44f156a8e","kind":"commit","published_at":"2024-05-19T00:24:52.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/pr-127-9143657910","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/pr-127-9143657910","dependencies_parsed_at":"2025-06-09T04:21:34.781Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@pr-127-9143657910","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/pr-127-9143657910","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/pr-127-9143657910/manifests"},{"name":"v2024.516.190229","sha":"ea076cfbe3f674bc7f923180be74ba0a54ceb25e","kind":"commit","published_at":"2024-05-16T19:02:26.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.516.190229","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.516.190229","dependencies_parsed_at":"2025-06-09T04:21:34.474Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.516.190229","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.516.190229","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.516.190229/manifests"},{"name":"v2024.516.185939","sha":"669a5113e9bdf0509d5951722600f33f384db566","kind":"commit","published_at":"2024-05-16T18:59:37.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.516.185939","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.516.185939","dependencies_parsed_at":"2025-06-09T04:21:35.149Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.516.185939","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.516.185939","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.516.185939/manifests"},{"name":"v2024.511.153520","sha":"fd7e29df5e68e5894cfe7939c9958490a3d7631f","kind":"commit","published_at":"2024-05-11T15:35:18.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.511.153520","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.511.153520","dependencies_parsed_at":"2025-06-09T04:21:34.562Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.511.153520","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.511.153520","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.511.153520/manifests"},{"name":"v2024.511.153151","sha":"bd53860e8b07dfb144fc70e9557bc371defbbc5d","kind":"commit","published_at":"2024-05-11T15:31:49.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2024.511.153151","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2024.511.153151","dependencies_parsed_at":"2025-06-09T04:21:34.604Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2024.511.153151","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.511.153151","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2024.511.153151/manifests"},{"name":"v2023.1219.224026","sha":"f6aeff9607fbb3983a39fa640e0fcd260506567d","kind":"commit","published_at":"2023-12-19T22:40:24.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.1219.224026","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.1219.224026","dependencies_parsed_at":"2025-06-09T04:21:34.534Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.1219.224026","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1219.224026","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1219.224026/manifests"},{"name":"v2023.1210.832","sha":"7da05731f32a7d2fb3a7d4c0641c2ad41033491a","kind":"commit","published_at":"2023-12-10T00:08:30.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.1210.832","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.1210.832","dependencies_parsed_at":"2025-06-09T04:21:34.759Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.1210.832","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1210.832","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1210.832/manifests"},{"name":"v2023.1208.224802","sha":"b4b271b885dd1409a97da43208eda8dcbce7f78a","kind":"commit","published_at":"2023-12-08T22:48:01.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.1208.224802","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.1208.224802","dependencies_parsed_at":"2025-06-09T04:21:35.342Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.1208.224802","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1208.224802","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1208.224802/manifests"},{"name":"v2023.1128.2625","sha":"991452ff96aaf07d6f1b58454f81f3197874bb4c","kind":"commit","published_at":"2023-11-28T00:26:22.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.1128.2625","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.1128.2625","dependencies_parsed_at":"2025-06-09T04:21:35.602Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.1128.2625","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1128.2625","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1128.2625/manifests"},{"name":"v2023.1128.2253","sha":"0fc1b92e4859f07c05a6011a3296c14e3598890d","kind":"commit","published_at":"2023-11-28T00:22:50.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.1128.2253","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.1128.2253","dependencies_parsed_at":"2025-06-09T04:21:35.434Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.1128.2253","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1128.2253","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.1128.2253/manifests"},{"name":"v2023.10.31-004241","sha":"cd331e8752cdc0b66d75ad41ada0c16cae7cdf73","kind":"commit","published_at":"2023-10-31T00:42:39.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.31-004241","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.31-004241","dependencies_parsed_at":"2025-06-09T04:21:35.288Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.31-004241","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.31-004241","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.31-004241/manifests"},{"name":"v2023.10.27-202554","sha":"361a8a8ef88735b64ac29db047c8622ba4ab1196","kind":"commit","published_at":"2023-10-27T20:25:52.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.27-202554","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.27-202554","dependencies_parsed_at":"2025-06-09T04:21:35.152Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.27-202554","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.27-202554","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.27-202554/manifests"},{"name":"v2023.10.26-230242","sha":"de66a6670439d1933d002d3993d2077816527911","kind":"commit","published_at":"2023-10-26T23:02:40.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.26-230242","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.26-230242","dependencies_parsed_at":"2025-06-09T04:21:35.432Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.26-230242","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.26-230242","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.26-230242/manifests"},{"name":"v2023.10.26-225903","sha":"f0a293318c4cecf180fa61f0200479cea755c42c","kind":"commit","published_at":"2023-10-26T22:59:01.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.26-225903","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.26-225903","dependencies_parsed_at":"2025-06-09T04:21:34.645Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.26-225903","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.26-225903","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.26-225903/manifests"},{"name":"v2023.10.22-57d76be","sha":"57d76be81fb151a93eafdedf110bbc70f5bfd799","kind":"commit","published_at":"2023-10-22T18:53:22.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.22-57d76be","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.22-57d76be","dependencies_parsed_at":"2025-06-09T04:21:34.539Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.22-57d76be","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.22-57d76be","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.22-57d76be/manifests"},{"name":"v2023.10.22-34b33ac","sha":"34b33ac6dc3dbec99203e63590216d7d833ca52c","kind":"commit","published_at":"2023-10-22T00:58:40.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.22-34b33ac","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.22-34b33ac","dependencies_parsed_at":"2025-06-09T04:21:34.775Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.22-34b33ac","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.22-34b33ac","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.22-34b33ac/manifests"},{"name":"2023.10.21-35734a9","sha":"35734a95b3f5fff900fa508dac1c6647434ed358","kind":"commit","published_at":"2023-10-21T02:30:29.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/2023.10.21-35734a9","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/2023.10.21-35734a9","dependencies_parsed_at":"2025-06-09T04:21:34.444Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@2023.10.21-35734a9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/2023.10.21-35734a9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/2023.10.21-35734a9/manifests"},{"name":"v2023.10.21-35734a9","sha":"35734a95b3f5fff900fa508dac1c6647434ed358","kind":"commit","published_at":"2023-10-21T02:30:29.000Z","download_url":"https://codeload.github.com/LizardByte/create-release-action/tar.gz/v2023.10.21-35734a9","html_url":"https://github.com/LizardByte/create-release-action/releases/tag/v2023.10.21-35734a9","dependencies_parsed_at":"2025-06-09T04:21:34.823Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/create-release-action@v2023.10.21-35734a9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.21-35734a9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/tags/v2023.10.21-35734a9/manifests"}]},"repo_metadata_updated_at":"2025-10-11T20:06:52.279Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":34.34343434343434,"dependent_packages_count":0.0,"stargazers_count":null,"forks_count":null,"docker_downloads_count":null,"average":17.17171717171717},"purl":"pkg:githubactions/LizardByte/create-release-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/LizardByte/create-release-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/LizardByte/create-release-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/LizardByte/create-release-action/dependencies","status":null,"funding_links":["https://github.com/sponsors/LizardByte","https://patreon.com/LizardByte","https://paypal.me/ReenigneArcher"],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T10:42:57.641Z","issues_count":1,"pull_requests_count":10,"avg_time_to_close_issue":2949.0,"avg_time_to_close_pull_request":7801221.555555556,"issues_closed_count":1,"pull_requests_closed_count":9,"pull_request_authors_count":4,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.7,"merged_pull_requests_count":6,"bot_issues_count":0,"bot_pull_requests_count":4,"past_year_issues_count":1,"past_year_pull_requests_count":9,"past_year_avg_time_to_close_issue":2949.0,"past_year_avg_time_to_close_pull_request":2248647.5,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":8,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.4444444444444444,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":3,"past_year_merged_pull_requests_count":6,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fcreate-release-action/issues","maintainers":[{"login":"ReenigneArcher","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ReenigneArcher"},{"login":"LizardByte-bot","count":10,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/LizardByte-bot"}],"active_maintainers":[{"login":"ReenigneArcher","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ReenigneArcher"},{"login":"LizardByte-bot","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/LizardByte-bot"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fcreate-release-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fcreate-release-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fcreate-release-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fcreate-release-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fcreate-release-action/codemeta","maintainers":[]}