Skip to content

Commit 5080dfd

Browse files
committed
Fixed paths to zip file for resources during build
1 parent 99206b9 commit 5080dfd

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/update-conf-2024-deploy.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,6 @@ jobs:
5353
with:
5454
dotnet-version: ${{ env.DOTNET_VERSION }}
5555

56-
# - name: Log in to Azure CLI so the Pulumi run custom commands
57-
# uses: azure/login@v1
58-
# with:
59-
# creds: '{"clientId":"${{ env.ARM_CLIENT_ID }}","clientSecret":"${{ env.ARM_CLIENT_SECRET }}","subscriptionId":"${{ env.ARM_SUBSCRIPTION_ID }}","tenantId":"${{ env.ARM_TENANT_ID }}"}'
60-
6156
- name: Download Artifact - Web Client
6257
uses: robinraju/[email protected]
6358
with:
@@ -66,7 +61,8 @@ jobs:
6661
fileName: feedback-web-client.zip
6762
out-file-path: ${{ env.ARTIFACT_DOWNLOAD_PATH }}
6863
token: ${{ secrets.GITHUB_TOKEN }}
69-
- name: Download Artifact - Web Client
64+
65+
- name: Download Artifact - Azure Functions
7066
uses: robinraju/[email protected]
7167
with:
7268
repository: "ProgrammerAL/Presentations-2024"

update-conference-prague-2024/demo-code-feedback-system/build/build/ApplicationBuildConfigs.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ public static AppPaths LoadFromContext(ICakeContext context, string buildConfigu
1717
CsprojFile: $"{srcDirectory}/FeedbackFunctionsApp/FeedbackFunctionsApp.csproj",
1818
OutDir: $"{srcDirectory}/FeedbackFunctionsApp/bin/{buildConfiguration}/cake-build-output",
1919
ZipOutDir: buildArtifactsPath,
20-
ZipOutFilePath: $"{buildArtifactsPath}/feedback-web-client.zip");
20+
ZipOutFilePath: $"{buildArtifactsPath}/feedback-functions.zip");
2121

2222
var webClientProject = new DotNetProject(
2323
CsprojFile: $"{srcDirectory}/FeedbackWebApp/FeedbackWebApp.csproj",
2424
OutDir: $"{srcDirectory}/FeedbackWebApp/bin/{buildConfiguration}/cake-build-output",
2525
ZipOutDir: buildArtifactsPath,
26-
ZipOutFilePath: $"{buildArtifactsPath}/feedback-functions.zip");
26+
ZipOutFilePath: $"{buildArtifactsPath}/feedback-web-client.zip");
2727

2828
return new AppPaths(
2929
slnFile,

0 commit comments

Comments
 (0)