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 500928c commit 919ff58Copy full SHA for 919ff58
.github/workflows/doc-deployment.yml
@@ -0,0 +1,26 @@
1
+name: doc-deployment
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build-and-deploy:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions/setup-python@v1
11
+ with:
12
+ python-version: '3.x'
13
14
+ - name: Install dependencies
15
+ run: pip install -v ford
16
17
+ - name: Build Documentation
18
+ run: ford ford.md
19
20
+ - uses: JamesIves/[email protected]
21
+ if: github.event_name == 'push'
22
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ BRANCH: gh-pages
25
+ FOLDER: doc
26
+ CLEAN: true
0 commit comments