Skip to content

Commit

Permalink
Update deploy-blazor-wasm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tscholze committed May 20, 2024
1 parent 47d9fea commit 1b45edc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/deploy-blazor-wasm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Deploy Blazor WASM to GitHub Page
env:
PUBLISH_DIR: bin/Release/net5.0/publish/wwwroot
PUBLISH_DIR: bin/Release/net8.0/publish/wwwroot

# Controls when the action will run
on:
Expand All @@ -10,9 +10,17 @@ on:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./MyLife.MyLife.Blazor.Wasm
steps:
- uses: actions/checkout@v2

- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.204'

- name: Publish application
run: dotnet publish -c Release

Expand Down

0 comments on commit 1b45edc

Please sign in to comment.