Skip to content

Commit 0518b76

Browse files
committed
Merge branch 'main' of https://github.com/jongio/azd-exec
2 parents d63a91c + 7c94d73 commit 0518b76

19 files changed

Lines changed: 724 additions & 6274 deletions

.github/workflows/website.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Website Deploy
22

33
on:
4+
repository_dispatch:
5+
types: [azd-web-core-updated]
46
workflow_dispatch: # Allow manual trigger
57
workflow_call: # Allow being called from release workflow
68
push:
@@ -21,6 +23,7 @@ concurrency:
2123
permissions:
2224
contents: write
2325
pull-requests: write
26+
packages: read
2427

2528
jobs:
2629
# Build job - runs for all triggers except PR closed
@@ -41,11 +44,14 @@ jobs:
4144
with:
4245
node-version: '20'
4346
cache: 'pnpm'
44-
cache-dependency-path: 'web/pnpm-lock.yaml'
47+
cache-dependency-path: 'pnpm-lock.yaml'
48+
registry-url: 'https://npm.pkg.github.com'
4549

4650
- name: Install dependencies
4751
working-directory: web
4852
run: pnpm install --frozen-lockfile
53+
env:
54+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4955

5056
- name: Build website (Production)
5157
if: github.event_name != 'pull_request'

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@jongio:registry=https://npm.pkg.github.com

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ Execute any script with full access to your Azure Developer CLI environment vari
1919

2020
<br />
2121

22+
[**🌐 Visit the Website →**](https://jongio.github.io/azd-exec/)
23+
24+
*Full documentation, CLI reference, and security architecture*
25+
26+
[**📦 Part of azd Extensions →**](https://jongio.github.io/azd-extensions/)
27+
28+
*Browse all Azure Developer CLI extensions by Jon Gallant*
29+
30+
<br />
31+
2232
</div>
2333

2434
---
@@ -496,10 +506,18 @@ azd x publish --registry ../registry.json --version "0.1.0"
496506

497507
---
498508

499-
## 📎 Related Projects
509+
## 📎 azd Extensions
510+
511+
azd exec is part of a suite of Azure Developer CLI extensions by [Jon Gallant](https://github.com/jongio).
512+
513+
| Extension | Description | Website |
514+
|-----------|-------------|---------|
515+
| **[azd app](https://github.com/jongio/azd-app)** | Run Azure apps locally with auto-dependencies, dashboard, and AI debugging | [jongio.github.io/azd-app](https://jongio.github.io/azd-app/) |
516+
| **[azd copilot](https://github.com/jongio/azd-copilot)** | AI-powered Azure development with 16 agents and 28 skills | [jongio.github.io/azd-copilot](https://jongio.github.io/azd-copilot/) |
517+
| **[azd exec](https://github.com/jongio/azd-exec)** | Execute scripts with azd environment context and Key Vault integration | [jongio.github.io/azd-exec](https://jongio.github.io/azd-exec/) |
518+
| **[azd rest](https://github.com/jongio/azd-rest)** | Authenticated REST API calls with automatic scope detection | [jongio.github.io/azd-rest](https://jongio.github.io/azd-rest/) |
500519

501-
- [Azure Developer CLI](https://github.com/Azure/azure-dev) - Core azd tool
502-
- [azd-app](https://github.com/jongio/azd-app) - Run Azure apps locally
520+
🌐 **Extension Hub**: [jongio.github.io/azd-extensions](https://jongio.github.io/azd-extensions/) — Browse all extensions, quick install, and registry info.
503521

504522
---
505523

pnpm-lock.yaml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@jongio:registry=https://npm.pkg.github.com

web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
},
1717
"dependencies": {
1818
"@astrojs/mdx": "^4.3.13",
19+
"@jongio/azd-web-core": "^2.0.0",
1920
"astro": "^5.17.1",
2021
"astro-expressive-code": "^0.41.6"
2122
},

0 commit comments

Comments
 (0)