We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65f1f8e + 3d21161 commit aeb9ebbCopy full SHA for aeb9ebb
2 files changed
.github/workflows/docs.yml
@@ -0,0 +1,27 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: Docs
4
5
+# Controls when the action will run.
6
+on:
7
+ # Triggers the workflow on push or pull request events but only for the main branch
8
+ push:
9
+ branches: [ main ]
10
11
+ workflow_dispatch:
12
13
+jobs:
14
+ publish:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v2
19
20
+ - name: Deploy to GitHub Pages
21
+ if: success()
22
+ uses: crazy-max/ghaction-github-pages@v2
23
+ with:
24
+ target_branch: gh-pages
25
+ build_dir: Docs
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Docs/.nojekyll
@@ -0,0 +1 @@
0 commit comments