File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,21 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
# Checkout the code
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
15
# Install .NET SDK
16
16
- name : Setup .NET
17
- uses : actions/setup-dotnet@v3
17
+ uses : actions/setup-dotnet@v4
18
18
with :
19
- dotnet-version : ' 8.0.x'
20
- dotnet-quality : ' preview'
19
+ dotnet-version : ' 9.0.x'
21
20
22
21
# Publish the site
23
22
- name : Publish
24
23
run : dotnet publish SampleApps/BlazorWasmApp1/BlazorWasmApp1.csproj -c Release -o public -p GHPages=true --nologo
25
24
26
25
# Deploy the site
27
26
- name : Deploy
28
- uses : peaceiris/actions-gh-pages@v3
27
+ uses : peaceiris/actions-gh-pages@v4
29
28
with :
30
29
github_token : ${{ secrets.GITHUB_TOKEN }}
31
30
publish_dir : public/wwwroot
You can’t perform that action at this time.
0 commit comments