{"id":14985896,"url":"https://github.com/jaywcjlove/github-action-upload-assets","last_synced_at":"2025-10-18T13:01:30.279Z","repository":{"id":250599038,"uuid":"834902441","full_name":"jaywcjlove/github-action-upload-assets","owner":"jaywcjlove","description":"GitHub Action to upload multiple assets to a release","archived":false,"fork":false,"pushed_at":"2024-07-28T19:59:36.000Z","size":3700,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T10:23:08.561Z","etag":null,"topics":["actions","relase","upload-file"],"latest_commit_sha":null,"homepage":"https://jaywcjlove.github.io/github-action-upload-assets/","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/jaywcjlove.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":{"ko_fi":"jaywcjlove","buy_me_a_coffee":"jaywcjlove","custom":["https://www.paypal.me/kennyiseeyou","https://jaywcjlove.github.io/#/sponsor"]}},"created_at":"2024-07-28T17:30:20.000Z","updated_at":"2024-12-12T13:52:48.000Z","dependencies_parsed_at":"2024-08-09T18:40:54.157Z","dependency_job_id":null,"html_url":"https://github.com/jaywcjlove/github-action-upload-assets","commit_stats":{"total_commits":26,"total_committers":1,"mean_commits":26.0,"dds":0.0,"last_synced_commit":"4a5b45fd034d92f3aa6d717be2a979e250128599"},"previous_names":["jaywcjlove/github-action-upload-assets"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywcjlove%2Fgithub-action-upload-assets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywcjlove%2Fgithub-action-upload-assets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywcjlove%2Fgithub-action-upload-assets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywcjlove%2Fgithub-action-upload-assets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaywcjlove","download_url":"https://codeload.github.com/jaywcjlove/github-action-upload-assets/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248340374,"owners_count":21087439,"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","relase","upload-file"],"created_at":"2024-09-24T14:11:50.904Z","updated_at":"2025-10-18T13:01:25.226Z","avatar_url":"https://github.com/jaywcjlove.png","language":"TypeScript","funding_links":["https://ko-fi.com/jaywcjlove","https://buymeacoffee.com/jaywcjlove","https://www.paypal.me/kennyiseeyou","https://jaywcjlove.github.io/#/sponsor"],"categories":[],"sub_categories":[],"readme":"Release Upload Assets\n===\n\n[![Buy me a coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee)](https://jaywcjlove.github.io/#/sponsor)\n[![CI](https://github.com/jaywcjlove/github-action-upload-assets/actions/workflows/ci.yml/badge.svg)](https://github.com/jaywcjlove/github-action-upload-assets/actions/workflows/ci.yml)\n\nUpload multiple assets to a release, or use GitHub Actions to upload assets to a specific release\n\n## Example Usage\n\n```yml\n- name: Release Upload Assets\n  uses: jaywcjlove/github-action-upload-assets@main\n  if: steps.create_tag.outputs.successful == 'true'\n  with:\n    asset-path: '[\"./target/release/sgo-*\"]'\n```\n\nUpload a file to a specified tag\n\n```yml\n- name: Release Upload Assets\n  uses: jaywcjlove/github-action-upload-assets@main\n  if: steps.create_tag.outputs.successful == 'true'\n  with:\n    tag: v0.3.0\n    asset-path: '[\"./target/release/sgo-*\"]'\n```\n\nContinue on error\n\n```yml\n- name: Release Upload Assets\n  uses: jaywcjlove/github-action-upload-assets@main\n  continue-on-error: true\n  with:\n    tag: v0.3.0\n    asset-path: '[\"./target/release/sgo-*\"]'\n```\n\n```yml\n- name: Create Tag\n  id: create_tag\n  uses: jaywcjlove/create-tag-action@main\n\n- name: Release Upload Assets\n  uses: jaywcjlove/github-action-upload-assets@main\n  continue-on-error: true\n  with:\n    tag: ${{ steps.create_tag.outputs.version }}\n    asset-path: '[\"./target/release/sgo-*\"]'\n```\n\n## Inputs\n\n- `asset-path` The paths to the assets you want to upload as a JSON array. You can use a [glob](https://www.npmjs.com/package/glob) pattern.\n- `tag` Specify the release tag name, for example: `v1.23.12`\n\n## Outputs\n\n- `browser_download_urls` The URL users can navigate to in order to download the uploaded asset\n\n## See Also\n\n- [Github Release Changelog Generator](https://github.com/jaywcjlove/changelog-generator) A GitHub Action that compares the commit differences between two branches\n- [Create Tags From](https://github.com/jaywcjlove/create-tag-action) Auto create tags from commit or package.json.\n- [Github Action Contributors](https://github.com/jaywcjlove/github-action-contributors) Github action generates dynamic image URL for contributor list to display it!\n- [Generated Badges](https://github.com/jaywcjlove/generated-badges) Create a badge using GitHub Actions and GitHub Workflow CPU time (no 3rd parties servers)\n- [Create Coverage Badges](https://github.com/jaywcjlove/coverage-badges-cli) Create coverage badges from coverage reports. (no 3rd parties servers)\n- [Github Action package](https://github.com/jaywcjlove/github-action-package) Read and modify the contents of `package.json`.\n- [Github Action EJS](https://github.com/jaywcjlove/github-action-package) A github action to render a ejs template using github context.\n- [Modify File Content](https://github.com/jaywcjlove/github-action-modify-file-content) Replace text content and submit content.\n\n## License\n\nLicensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaywcjlove%2Fgithub-action-upload-assets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaywcjlove%2Fgithub-action-upload-assets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaywcjlove%2Fgithub-action-upload-assets/lists"}