{"id":29403656,"url":"https://github.com/buildstash/azure-devops-extension","last_synced_at":"2026-05-20T14:35:17.864Z","repository":{"id":301983852,"uuid":"1009288897","full_name":"Buildstash/azure-devops-extension","owner":"Buildstash","description":"Azure Pipelines extension, provides a task for simple uploading of build artifacts into Buildstash","archived":false,"fork":false,"pushed_at":"2025-06-29T23:55:56.000Z","size":117,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-30T00:29:30.674Z","etag":null,"topics":["azure","azure-devops","azure-devops-extensions","azure-devops-pipelines","azure-pipelines","azure-pipelines-extensions","build","build-artifacts","buildstash"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=Buildstash.buildstash-tasks","language":"JavaScript","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/Buildstash.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":"2025-06-26T22:19:18.000Z","updated_at":"2025-06-30T00:15:28.000Z","dependencies_parsed_at":"2025-06-30T00:29:34.077Z","dependency_job_id":"62810eb4-3435-4270-9721-aa3fb9690651","html_url":"https://github.com/Buildstash/azure-devops-extension","commit_stats":null,"previous_names":["buildstash/azure-devops-extension"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Buildstash/azure-devops-extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Buildstash%2Fazure-devops-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Buildstash%2Fazure-devops-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Buildstash%2Fazure-devops-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Buildstash%2Fazure-devops-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Buildstash","download_url":"https://codeload.github.com/Buildstash/azure-devops-extension/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Buildstash%2Fazure-devops-extension/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264637866,"owners_count":23642063,"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":["azure","azure-devops","azure-devops-extensions","azure-devops-pipelines","azure-pipelines","azure-pipelines-extensions","build","build-artifacts","buildstash"],"created_at":"2025-07-10T19:00:55.079Z","updated_at":"2026-05-20T14:35:17.859Z","avatar_url":"https://github.com/Buildstash.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Buildstash Azure DevOps Extension\n\nThis Azure DevOps extension allows you to upload build artifacts to Buildstash.\n\nBuildstash is a platform for software teams to manage all their past builds, organize, share with team members, and steer through to deployment or publishing. \n\n## Features\n\n- Upload software builds, for any platform\n- Attach associated metadata to builds - such as git commit, Azure Pipelines run data, etc\n- Once stored in Buildstash, builds can be be powerfully organized, shared, and more\n\n## Installation\n\nInstall the extension to your Azure DevOps organization via the marketplace at https://marketplace.visualstudio.com/items?itemName=Buildstash.buildstash-tasks\n\nAdd the Buildstash upload task to your pipeline script, using the example below.\n\nAdd the application specific API key as a secret variable for your pipeline, with name BUILDSTASH_API_KEY.\n\nNote: You will need to have an active Buildstash account and API key for your application, sign up at [buildstash.com](https://buildstash.com)\n\n## Usage\n\nAdd the \"Upload to Buildstash\" task to your Azure DevOps pipeline:\n\n```yaml\n- task: BuildstashUpload@1\n    displayName: Upload to Buildstash\n    inputs:\n      apiKey: $(BUILDSTASH_API_KEY)\n      structure: 'file'\n      primaryFilePath: 'example.exe'\n      versionComponent1Major: '1'\n      versionComponent2Minor: '0'\n      versionComponent3Patch: '1'\n      versionComponentExtra: 'beta'\n      versionComponentMeta: '2024.12.02'\n      customBuildNumber: '12345'\n      platform: 'windows'\n      stream: 'default'\n\n      # Optional build associations\n      labels: |\n        to-review\n        signed\n      architectures: |\n        x64\n        x86\n\n      # Optional CI info\n      ciBuildDuration: '15m30s'\n\n      # Optional VC info\n      vcHostType: 'git'\n      vcHost: 'github'\n      vcRepoName: $(Build.Repository.Name)\n      vcRepoUrl: $(Build.Repository.Uri)\n      vcBranch: $(Build.SourceBranchName)\n      vcCommitSha: $(Build.SourceVersion)\n      vcCommitUrl: $(Build.Repository.Uri)/commit/$(Build.SourceVersion)\n```\n\n## Input Parameters\n\n### Required\n- **Primary File Path**: Path to the primary build artifact file to upload\n- **Structure**: Structure type for the upload (`file` or `file+expansion`)\n- **API Key**: Buildstash API key for authentication (should be passed in as a secret variable)\n\n### Optional\n- **Expansion File Path**: Path to the optional expansion file to upload (can be used to upload Android .obb files with a primary .apk)\n- **Version Components**: Major, minor, patch version components, with optional extra and meta components\n- **Custom Build Number**: Custom build number, in any preferred format\n- **Version Control Information**: Host type, host, repository details, branch, commit information\n- **Platform**: Platform name (must exactly match platform slug attached to your app)\n- **Stream**: Stream name (must exactly match)\n- **Notes**: Optional build notes\n\n## Adjust Timeout\n\nBy default Azure DevOps will timeout jobs after 60 minutes.\n\nThis is probably fine, but if you are uploading a particularly massive build, or have a slow connection, you may wish to tweak this.\n\nThis is done on the job as below:\n\n```yaml\njobs:\n- job: Test\n  timeoutInMinutes: 60 # how long to run the job before automatically cancelling in minutes - increase if needed for large uploads\n```\n\nRefer to [Azure docs for more detail](https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops\u0026tabs=yaml#timeouts).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuildstash%2Fazure-devops-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuildstash%2Fazure-devops-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuildstash%2Fazure-devops-extension/lists"}