Skip to content

Commit

Permalink
Update deploy-pages-static.yml
Browse files Browse the repository at this point in the history
Update .NET version and action versions
  • Loading branch information
lmalenfant authored Sep 12, 2024
1 parent c148b75 commit dd6824f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-pages-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Publish the docs to docs/_site
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.x
dotnet-version: 8.x
- run: dotnet tool update -g docfx
- run: docfx documentation/docfx.json

# Deploy the generated docs to GitHub Pages
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
# Upload static files
path: 'documentation/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit dd6824f

Please sign in to comment.