Skip to content

Commit c36c3f3

Browse files
committed
Update .NET Publish output directory to output
The `.NET Publish` step in `static-web-app.yml` was updated to change the output directory from `publish` to `output`. This modification adjusts the `-o` flag in the publish command to reflect the new directory structure or deployment requirements. No other changes were made to the `.NET Publish` command or the `.NET Build` step.
1 parent 6270a25 commit c36c3f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/static-web-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
# .NET Publish
5151
- name: .NET Publish
52-
run: dotnet publish ${{ env.PROJECT }} -c ${{ env.BUILD_CONFIG }} -o publish -f ${{ env.DOTNET_VERSION }} --no-build
52+
run: dotnet publish ${{ env.PROJECT }} -c ${{ env.BUILD_CONFIG }} -o output -f ${{ env.DOTNET_VERSION }} --no-build
5353

5454
# Azure Static Web App Deployment Action
5555
- name: Build And Deploy Blazor WASM App

0 commit comments

Comments
 (0)