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 9188b48 commit 7c587deCopy full SHA for 7c587de
.github/workflows/documentation.yml
@@ -40,3 +40,23 @@ jobs:
40
with:
41
name: html
42
path: _build/python-fluent
43
+
44
+ publish:
45
+ name: publish
46
+ needs: [build]
47
+ # if: github.event_name == 'push'
48
+ runs-on: ubuntu-latest
49
+ steps:
50
+ - name: Download artifact
51
+ uses: actions/download-artifact@v2
52
+ with:
53
+ name: html
54
+ path: _build
55
+ - name: Deploy 🚀
56
+ uses: JamesIves/github-pages-deploy-action@3.7.1
57
58
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
+ BRANCH: gh-pages # The branch the action should deploy to.
60
+ BASE_BRANCH: ${{ github.ref }} # What we're deploying.
61
+ FOLDER: _build # The folder the action should deploy.
62
+ CLEAN: true # Automatically remove deleted files from the deploy branch
0 commit comments