We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cdd2db2 + 4ceab7f commit 09be673Copy full SHA for 09be673
1 file changed
.github/workflows/docs.yml
@@ -41,6 +41,22 @@ jobs:
41
- name: Generate documentation
42
run: dotnet docfx docfx/docfx.json
43
44
+ - name: Upload docs artifact
45
+ uses: actions/upload-artifact@v4
46
+ with:
47
+ name: docs-output
48
+ path: docs
49
+
50
+ upload-pages:
51
+ runs-on: ubuntu-latest
52
+ needs: build
53
+ steps:
54
+ - name: Download docs artifact
55
+ uses: actions/download-artifact@v4
56
57
58
59
60
- name: Upload Pages artifact
61
uses: actions/upload-pages-artifact@v3
62
with:
@@ -51,7 +67,7 @@ jobs:
67
name: github-pages
68
url: ${{ steps.deployment.outputs.page_url }}
69
runs-on: ubuntu-latest
- needs: build
70
+ needs: upload-pages
71
steps:
72
- name: Deploy to GitHub Pages
73
id: deployment
0 commit comments