File tree Expand file tree Collapse file tree
AspireAcademy.Web/src/data Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ permissions:
2222 id-token : write # Required for OIDC federated credentials with Azure
2323
2424env :
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
Original file line number Diff line number Diff line change @@ -10,6 +10,16 @@ export interface ChangelogEntry {
1010}
1111
1212export 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' ,
You can’t perform that action at this time.
0 commit comments