Skip to content

Commit

Permalink
Update documentation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jblattgerste authored Oct 8, 2024
1 parent fc75558 commit fc73f9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: windows-latest # Required by DocFX
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v2
# with:
# submodules: true

Expand All @@ -26,7 +26,7 @@ jobs:

# Upload the generated documentation
- name: Upload site artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v1
with:
name: _site
path: _site # Must equals the 'build.dest' value on your docfx.json
Expand All @@ -37,13 +37,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v2
# with:
# submodules: true

# Download the generated documentation
- name: Download site artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v1
with:
name: _site

Expand Down

0 comments on commit fc73f9d

Please sign in to comment.