Skip to content

Commit b19fd86

Browse files
davidfowlCopilot
andcommitted
Address follow-up PR feedback
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 780d845 commit b19fd86

File tree

3 files changed

+25
-35
lines changed

3 files changed

+25
-35
lines changed

src/frontend/config/sidebar/deployment.topics.ts

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -113,44 +113,10 @@ export const deploymentTopics: StarlightSidebarTopicsUserConfig = {
113113
},
114114
{
115115
label: 'Azure',
116-
translations: {
117-
da: 'Azure',
118-
de: 'Azure',
119-
en: 'Azure',
120-
es: 'Azure',
121-
fr: 'Azure',
122-
hi: 'Azure',
123-
id: 'Azure',
124-
it: 'Azure',
125-
ja: 'Azure',
126-
ko: 'Azure',
127-
'pt-BR': 'Azure',
128-
ru: 'Azure',
129-
tr: 'Azure',
130-
uk: 'Azure',
131-
'zh-CN': 'Azure',
132-
},
133116
collapsed: false,
134117
items: [
135118
{
136119
label: 'Aspire CLI',
137-
translations: {
138-
da: 'Aspire CLI',
139-
de: 'Aspire CLI',
140-
en: 'Aspire CLI',
141-
es: 'Aspire CLI',
142-
fr: 'Aspire CLI',
143-
hi: 'Aspire CLI',
144-
id: 'Aspire CLI',
145-
it: 'Aspire CLI',
146-
ja: 'Aspire CLI',
147-
ko: 'Aspire CLI',
148-
'pt-BR': 'Aspire CLI',
149-
ru: 'Aspire CLI',
150-
tr: 'Aspire CLI',
151-
uk: 'Aspire CLI',
152-
'zh-CN': 'Aspire CLI',
153-
},
154120
slug: 'deployment/azure/aca-deployment-aspire-cli',
155121
},
156122
{

src/frontend/src/components/TopicHero.astro

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,24 @@ const subtitleSegments = subtitle
190190
color: var(--sl-color-gray-2);
191191
}
192192

193+
.topic-hero-subtitle code {
194+
display: inline-block;
195+
padding: 0.12em 0.45em;
196+
margin-inline: 0.08em;
197+
border-radius: 0.4rem;
198+
border: 1px solid color-mix(in srgb, var(--topic-accent) 28%, transparent);
199+
background: color-mix(in srgb, var(--topic-accent) 16%, var(--sl-color-black));
200+
color: color-mix(in srgb, var(--topic-accent) 72%, white);
201+
font-size: 0.95em;
202+
font-weight: 600;
203+
box-shadow: inset 0 1px 0 color-mix(in srgb, white 8%, transparent);
204+
}
205+
206+
:global([data-theme='light']) .topic-hero-subtitle code {
207+
background: color-mix(in srgb, var(--topic-accent) 14%, white);
208+
color: color-mix(in srgb, var(--topic-accent) 82%, black);
209+
}
210+
193211
.topic-hero-actions {
194212
display: flex;
195213
flex-wrap: wrap;

src/frontend/src/content/docs/deployment/ci-cd.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ description: Use the Aspire CLI as the source of truth in CI/CD and design workf
66
import { CardGrid, LinkCard, Steps } from '@astrojs/starlight/components';
77
import LearnMore from '@components/LearnMore.astro';
88

9-
CI/CD with Aspire has two layers that work together:
9+
<abbr
10+
title="Continuous Integration & Continuous Delivery"
11+
data-tooltip-placement="top"
12+
>
13+
CI/CD
14+
</abbr>
15+
with Aspire has two layers that work together:
1016

1117
- Your **CI/CD pipeline** decides when jobs run, which approvals they require, how artifacts move between stages, and which credentials are available.
1218
- Aspire's **pipeline system** decides how your AppHost is evaluated, which application-specific steps run, and how build, publish, push, and deploy work is ordered.

0 commit comments

Comments
 (0)