Skip to content

Commit b3c7894

Browse files
committed
Set some standard vonfig values
1 parent a347914 commit b3c7894

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

update-conference-prague-2024/demo-code-feedback-system/deploy/deploy/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ public override void Run(BuildContext context)
8989

9090
configFileText = UpdateConfigValue("update-conf-2024:functions-package-path: ", $"{context.ReleaseArtifactsDownloadDir}/feedback-functions.zip", configFileText);
9191
configFileText = UpdateConfigValue("update-conf-2024:static-site-path: ", $"{context.UnzippedArtifactsDir}/feedback-web-client", configFileText);
92+
configFileText = UpdateConfigValue("Version: ", context.ReleaseVersion, configFileText);
9293

9394
File.WriteAllText(configFilePath, configFileText);
9495
context.Log.Information("Pulumi Config: \n" + configFileText);

update-conference-prague-2024/demo-code-feedback-system/infra/Pulumi.dev.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
config:
22
update-conf-2024:azure-resource-group-name: dev-feedback-rg
3-
update-conf-2024:functions-package-path: ../src/published-apps/functions.zip
3+
update-conf-2024:functions-package-path: local
44
update-conf-2024:location: eastus
5-
update-conf-2024:static-site-path: ../src/published-apps/webapp
5+
update-conf-2024:static-site-path: local
66
update-conf-2024:service-config:
7-
Version: dev-version-123
7+
Version: local
88
Environment: dev
99
update-conf-2024:resource-users-config:
1010
GroupName: dev-users

0 commit comments

Comments
 (0)