Skip to content

Commit b9ccb2e

Browse files
committed
feat: add installation steps for azd and its extensions in release workflow
1 parent 67311e2 commit b9ccb2e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ jobs:
7070
- name: Install govulncheck
7171
run: go install golang.org/x/vuln/cmd/govulncheck@latest
7272

73+
- name: Install azd
74+
run: curl -fsSL https://aka.ms/install-azd.sh | bash
75+
76+
- name: Install azd extensions
77+
run: |
78+
# Add the official azd extensions registry source
79+
azd extension source add azd --location https://aka.ms/azd/extensions/registry --type url 2>/dev/null || true
80+
azd extension install microsoft.azd.extensions --source azd
81+
7382
- name: Run preflight checks
7483
run: mage preflight
7584

0 commit comments

Comments
 (0)