We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a4e36 commit e436312Copy full SHA for e436312
.github/workflows/publish.yml
@@ -0,0 +1,15 @@
1
+# ... previous steps ...
2
+- name: Build DocFX site
3
+ run: docfx build
4
+
5
+- name: Add .nojekyll file to disable Jekyll on GitHub Pages
6
+ run: echo "" > _site/.nojekyll
7
8
+- name: Deploy to GitHub Pages
9
+ uses: peaceiris/actions-gh-pages@v4
10
+ with:
11
+ github_token: ${{ secrets.GITHUB_TOKEN }}
12
+ publish_dir: ./_site
13
+ publish_branch: gh-pages
14
+ user_name: github-actions[bot]
15
+ user_email: github-actions[bot]@users.noreply.github.com
0 commit comments