Skip to content

Commit

Permalink
Ensure the dotnet wasm publish is in release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
aldelaro5 committed Feb 11, 2024
1 parent 6e12574 commit aa5050f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: dotnet test --no-build
- name: Publish
working-directory: ${{ env.PROJECT_PATH }}
run: dotnet publish -f net7.0
run: dotnet publish -f net7.0 -c Release
- name: Prepare AppBundle Directory
working-directory: ${{ env.PROJECT_PATH }}/bin/Release/browser-wasm/AppBundle
run: rm *.map
Expand Down

0 comments on commit aa5050f

Please sign in to comment.