{"id":18143256,"url":"https://github.com/bugsnag/bugsnag-dsym-upload","last_synced_at":"2025-04-12T21:24:52.750Z","repository":{"id":10671080,"uuid":"66575886","full_name":"bugsnag/bugsnag-dsym-upload","owner":"bugsnag","description":"Scripts and Fastlane tasks for uploading dSYM files to BugSnag","archived":false,"fork":false,"pushed_at":"2025-02-13T09:18:48.000Z","size":4226,"stargazers_count":37,"open_issues_count":4,"forks_count":13,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-04-04T00:57:03.928Z","etag":null,"topics":["bugsnag","dsym","error-reporting","fastlane","homebrew","platforms"],"latest_commit_sha":null,"homepage":"https://docs.bugsnag.com/build-integrations/fastlane/","language":"Ruby","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/bugsnag.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":".github/support.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-08-25T16:42:05.000Z","updated_at":"2025-02-13T09:18:50.000Z","dependencies_parsed_at":"2024-06-19T16:04:24.656Z","dependency_job_id":"c20c149f-c893-48e3-8dbf-339958c7d18e","html_url":"https://github.com/bugsnag/bugsnag-dsym-upload","commit_stats":{"total_commits":169,"total_committers":19,"mean_commits":8.894736842105264,"dds":0.5857988165680473,"last_synced_commit":"47fee06af3a6d92e8aafd3c9d3453649ded03e13"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-dsym-upload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-dsym-upload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-dsym-upload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-dsym-upload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bugsnag","download_url":"https://codeload.github.com/bugsnag/bugsnag-dsym-upload/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248633178,"owners_count":21136821,"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":["bugsnag","dsym","error-reporting","fastlane","homebrew","platforms"],"created_at":"2024-11-01T19:06:15.532Z","updated_at":"2025-04-12T21:24:52.725Z","avatar_url":"https://github.com/bugsnag.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bugsnag-dsym-upload\n\nCommands for uploading files to Bugsnag via the Bugsnag Upload APIs\n\n\n## Current Features\n\n* Uploads dSYM files in bulk\n* Converts bitcode-enabled symbol files stripped of symbol names into full files\n\n## Installation\n\n### Basic\n\nCopy `bin/bugsnag-dsym-upload` into your `PATH`, or run `make install` to\ninstall to the default directory, `/usr/lib/bin`.\n\nView usage [here](man/bugsnag-dsym-upload.pod) or using `man\nbugsnag-dsym-upload`\n\n### [Homebrew](https://brew.sh)\n\nInstall via the Homebrew formula:\n\n```\nbrew install bugsnag/tap/bugsnag-dsym-upload\n```\n\nThis will also add the Bugsnag Homebrew tap for future updates.\n\n### [Fastlane](https://fastlane.tools)\n\nAdd `bugsnag` as a plugin in your configuration:\n\n```\nfastlane add_plugin bugsnag\n```\n\nThen add the `upload_symbols_to_bugsnag` action to your lane:\n\n```ruby\nlane :refresh_dsyms do\n  download_dsyms(version: \"1.4.2.1\")     # Download dSYM files from App Store Connect\n  upload_symbols_to_bugsnag              # Upload them to Bugsnag\n  clean_build_artifacts                  # Delete the local dSYM files\nend\n```\n\nCommon options:\n\n* `api_key`: The API key associated with the project. Informs Bugsnag which project \n  the dSYMs should be applied to.\n* `dsym_path`: A path or array of paths for directories containing \\*.dSYM files\n  or a single \\*.zip file to upload. If unspecified, the default behavior is to\n  upload the zip files retrieved by a prior invocation of\n  [`download_dsyms`](https://docs.fastlane.tools/actions/#download_dsyms), or\n  any .dSYM files within the current directory.\n* `upload_url`: The URL of the server receiving symbol files. Update this value\n  if you are using a private instance of Bugsnag\n* `config_file`: The path to the project's Info.plist. Set this value if your configuration file \n  is not automatically detected.\n\nView usage additional usage information and options by running:\n\n```shell\nfastlane action upload_symbols_to_bugsnag\n```\n\nFor more information, take a look at the Bugsnag docs on \n[using the Fastfile plugin](https://docs.bugsnag.com/build-integrations/fastlane/).\n\nCheck out the [example `Fastfile`](tools/fastlane-plugin/fastlane/Fastfile) to\nsee how to use this plugin.  Try it by cloning the repo, running `fastlane\ninstall_plugins` and `bundle exec fastlane test`.\n\nIf you have trouble using plugins, check out the [Plugins\nTroubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/)\nguide.\n\n## License\n\nThis module is free software released under the MIT License. See [LICENSE.txt](LICENSE.txt) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbugsnag%2Fbugsnag-dsym-upload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbugsnag%2Fbugsnag-dsym-upload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbugsnag%2Fbugsnag-dsym-upload/lists"}