Skip to content

Commit 1b4fefe

Browse files
Merge pull request #89 from microsoft/psl-update-image
fix: updates to a GitHub Actions workflow and infrastructure configuration files
2 parents 47044d1 + dead58e commit 1b4fefe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/Create-Release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ jobs:
5656
'@semantic-release/github'
5757
]
5858
env:
59-
GITHUB_TOKEN: ${{ secrets.TOKEN }}
59+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
- run: echo ${{ steps.semantic.outputs.release-version }}
6161

6262
- run: echo "$OUTPUTS"
6363
env:
6464
OUTPUTS: ${{ toJson(steps.semantic.outputs) }}
65-
65+

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ param capacity int = 5
3636
var uniqueId = toLower(uniqueString(subscription().id, Prefix, resourceGroup().location))
3737
var UniquePrefix = 'cm${padLeft(take(uniqueId, 12), 12, '0')}'
3838
var ResourcePrefix = take('cm${Prefix}${UniquePrefix}', 15)
39-
var imageVersion = 'fnd01'
39+
var imageVersion = 'latest'
4040
var location = resourceGroup().location
4141
var dblocation = resourceGroup().location
4242
var cosmosdbDatabase = 'cmsadb'

infra/main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.34.44.8038",
8-
"templateHash": "6290258568261172226"
8+
"templateHash": "143804218232551421"
99
}
1010
},
1111
"parameters": {
@@ -57,7 +57,7 @@
5757
"uniqueId": "[toLower(uniqueString(subscription().id, parameters('Prefix'), resourceGroup().location))]",
5858
"UniquePrefix": "[format('cm{0}', padLeft(take(variables('uniqueId'), 12), 12, '0'))]",
5959
"ResourcePrefix": "[take(format('cm{0}{1}', parameters('Prefix'), variables('UniquePrefix')), 15)]",
60-
"imageVersion": "fnd01",
60+
"imageVersion": "latest",
6161
"location": "[resourceGroup().location]",
6262
"dblocation": "[resourceGroup().location]",
6363
"cosmosdbDatabase": "cmsadb",

0 commit comments

Comments
 (0)