From 11c967aeb44bca8868b6c45b89231d2f60a09f36 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Wed, 25 Feb 2026 21:50:37 +0100 Subject: [PATCH] docs: add SetupGitHubRelease task to README and overview --- README.md | 3 +++ overview.md | 1 + 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 1d8cc2f..63c4b1c 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ For administrator-facing installation and usage guidance, see `overview.md`. - Downloads a blob to a local file path using the selected AzureRM service connection. - `PutBlob@1` - Uploads a local file as a blob using the selected AzureRM service connection. +- `SetupGitHubRelease@1` + - Downloads and installs a binary from the latest GitHub release and prepends it to PATH. ## Repository layout @@ -29,6 +31,7 @@ For administrator-facing installation and usage guidance, see `overview.md`. - `task/ListBlobs` - task implementation and manifest - `task/GetBlob` - task implementation and manifest - `task/PutBlob` - task implementation and manifest +- `task/SetupGitHubRelease` - task implementation and manifest - `shared` - local npm package with shared OIDC/devops/blob helpers - `scripts/build.sh` - builds tasks and packages the extension - `examples/azure-pipelines-smoke.yml` - smoke pipeline example diff --git a/overview.md b/overview.md index 87dbef0..ad2469d 100644 --- a/overview.md +++ b/overview.md @@ -11,6 +11,7 @@ Azure DevOps extension with pipeline tasks for federated auth and blob/state ope - `ListBlobs@1` - lists blobs in a container (optional prefix) using the selected AzureRM service connection. - `GetBlob@1` - downloads a blob to a local file path using the selected AzureRM service connection. - `PutBlob@1` - uploads a local file as a blob using the selected AzureRM service connection. +- `SetupGitHubRelease@1` - downloads and installs a binary from the latest GitHub release and prepends it to PATH. Implementation note: task shared helpers are packaged locally during build and bundled with the extension (no external package registry access required at runtime).