We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aa42c2 commit eb9655aCopy full SHA for eb9655a
1 file changed
.github/workflows/main.yml
@@ -12,13 +12,13 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
# Checkout the code
15
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
16
17
- # Install .NET 8.0 SDK
18
- - name: Setup .NET 8 preview
+ # Install .NET 10.0 SDK
+ - name: Setup .NET 10 preview
19
uses: actions/setup-dotnet@v3
20
with:
21
- dotnet-version: '8.0.x'
+ dotnet-version: '10.0.x'
22
include-prerelease: true
23
24
# Generate the website
@@ -30,7 +30,7 @@ jobs:
30
if: ${{ github.ref == 'refs/heads/main' }} # Publish only when the push is on main
31
uses: peaceiris/actions-gh-pages@v3.6.1
32
33
- github_token: ${{ secrets.PUBLISH_TOKEN }}
+ github_token: ${{ secrets.GITHUB_TOKEN }}
34
publish_branch: gh-pages
35
publish_dir: build/wwwroot
36
allow_empty_commit: false
0 commit comments