Compare commits
9 Commits
2c2981d791
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 783f147fb0 | |||
| 77ba71f7ec | |||
| 91dd2f1574 | |||
| 11c967aeb4 | |||
| 520b125ac1 | |||
| f4ac753dae | |||
| ef756810cc | |||
| 54d7e612b6 | |||
| b58b01cdb1 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,3 +5,4 @@ task/AzureFederatedAuth/dist/
|
||||
build/
|
||||
AGENTS.md
|
||||
.DS_Store
|
||||
.env
|
||||
|
||||
@@ -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
|
||||
@@ -77,6 +80,10 @@ Publishing requires a Visual Studio Marketplace publisher and sharing the publis
|
||||
|
||||
Slawomir Koszewski
|
||||
|
||||
## AI Generated Content
|
||||
|
||||
Parts of this repository were generated with the assistance of AI. The author has reviewed and edited the AI-generated content to ensure accuracy and clarity.
|
||||
|
||||
## License
|
||||
|
||||
MIT. See `LICENSE`.
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
trigger: none
|
||||
pr: none
|
||||
|
||||
pool:
|
||||
vmImage: ubuntu-latest
|
||||
@@ -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).
|
||||
|
||||
@@ -45,6 +46,10 @@ https://github.com/skoszewski/ado-sk-toolkit-extension.git
|
||||
|
||||
Slawomir Koszewski
|
||||
|
||||
## AI Generated Content
|
||||
|
||||
Parts of this extension's source code were generated with the assistance of AI. The author has reviewed and edited the AI-generated content to ensure accuracy and clarity.
|
||||
|
||||
## License
|
||||
|
||||
MIT. See `LICENSE`.
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
if [[ $# -lt 3 ]]; then
|
||||
echo "Usage: $0 <vsix-path> <publisher-id> <org1> [org2] [org3] ..."
|
||||
echo "Requires environment variable AZDO_PAT to be set."
|
||||
exit 1
|
||||
fi
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
set -a
|
||||
source "$SCRIPT_DIR/.env"
|
||||
set +a
|
||||
|
||||
if [[ -z "${AZDO_PAT:-}" ]]; then
|
||||
echo "AZDO_PAT is not set."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
VSIX_PATH="$1"
|
||||
PUBLISHER_ID="$2"
|
||||
shift 2
|
||||
VSIX_PATH="$SCRIPT_DIR/build/${PUBLISHER_ID}.${EXTENSION_ID}-${EXTENSION_VERSION}.vsix"
|
||||
|
||||
if [[ ! -f "$VSIX_PATH" ]]; then
|
||||
echo "VSIX file not found at path: $VSIX_PATH"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for ORG in "$@"; do
|
||||
echo "Publishing to organization: $ORG"
|
||||
npx tfx-cli extension publish \
|
||||
tfx extension publish \
|
||||
--vsix "$VSIX_PATH" \
|
||||
--publisher "$PUBLISHER_ID" \
|
||||
--token "$AZDO_PAT" \
|
||||
--share-with "$ORG"
|
||||
done
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "azure-federated-auth-task",
|
||||
"version": "1.0.9",
|
||||
"version": "1.0.10",
|
||||
"private": true,
|
||||
"author": "Slawomir Koszewski",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"version": {
|
||||
"Major": 1,
|
||||
"Minor": 0,
|
||||
"Patch": 9
|
||||
"Patch": 10
|
||||
},
|
||||
"instanceNameFormat": "Configure federated auth: $(serviceConnectionARM)",
|
||||
"inputs": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "copy-blob-task",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"private": true,
|
||||
"author": "Slawomir Koszewski",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"version": {
|
||||
"Major": 1,
|
||||
"Minor": 0,
|
||||
"Patch": 2
|
||||
"Patch": 3
|
||||
},
|
||||
"instanceNameFormat": "Copy blob: $(srcStorageAccountName)/$(srcContainerName)/$(blobName)",
|
||||
"inputs": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "get-blob-task",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"author": "Slawomir Koszewski",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"version": {
|
||||
"Major": 1,
|
||||
"Minor": 0,
|
||||
"Patch": 0
|
||||
"Patch": 1
|
||||
},
|
||||
"instanceNameFormat": "Get blob: $(storageAccountName)/$(containerName)/$(blobName)",
|
||||
"inputs": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "list-blobs-task",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"private": true,
|
||||
"author": "Slawomir Koszewski",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"version": {
|
||||
"Major": 1,
|
||||
"Minor": 0,
|
||||
"Patch": 1
|
||||
"Patch": 2
|
||||
},
|
||||
"instanceNameFormat": "List blobs: $(storageAccountName)/$(containerName)",
|
||||
"inputs": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "put-blob-task",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"author": "Slawomir Koszewski",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"version": {
|
||||
"Major": 1,
|
||||
"Minor": 0,
|
||||
"Patch": 0
|
||||
"Patch": 1
|
||||
},
|
||||
"instanceNameFormat": "Put blob: $(storageAccountName)/$(containerName)/$(blobName)",
|
||||
"inputs": [
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"manifestVersion": 1,
|
||||
"id": "sk-azure-devops-toolkit",
|
||||
"name": "SK Azure DevOps Toolkit",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"publisher": "skoszewski-lab",
|
||||
"targets": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user