Skip to content

Commit 09229e5

Browse files
committed
fix deploy workflow default resource group and prep v1.3.5
1 parent 3ec1973 commit 09229e5

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
id-token: write # Required for OIDC federated credentials with Azure
2323

2424
env:
25-
AZURE_RESOURCE_GROUP: ${{ vars.AZURE_RESOURCE_GROUP }}
25+
AZURE_RESOURCE_GROUP: ${{ vars.AZURE_RESOURCE_GROUP || 'aspire-academy' }}
2626
AZURE_LOCATION: ${{ vars.AZURE_LOCATION || 'eastus' }}
2727
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID || vars.AZURE_SUBSCRIPTION_ID }}
2828

AspireAcademy.Web/src/data/changelog.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ export interface ChangelogEntry {
1010
}
1111

1212
export const changelog: ChangelogEntry[] = [
13+
{
14+
version: '1.3.5',
15+
date: '2026-03-30',
16+
title: 'Deployment Resource Group Default',
17+
highlights: ['Default resource group in CI', 'Fewer deploy env misconfig failures'],
18+
entries: [
19+
{ type: 'fix', text: 'Release workflow now defaults AZURE_RESOURCE_GROUP to aspire-academy when repo variable is unset' },
20+
{ type: 'improvement', text: 'Deploy command no longer runs with an empty resource group parameter by default' },
21+
]
22+
},
1323
{
1424
version: '1.3.4',
1525
date: '2026-03-30',

0 commit comments

Comments
 (0)