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 0307b25Copy full SHA for 0307b25
.github/workflows/documentation.yml
@@ -40,3 +40,24 @@ 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
+ - uses: actions/checkout@v2
51
+ - name: Download artifact
52
+ uses: actions/download-artifact@v2
53
+ with:
54
+ name: html
55
+ path: _build
56
+ - name: Deploy 🚀
57
+ uses: JamesIves/[email protected]
58
59
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60
+ BRANCH: gh-pages # The branch the action should deploy to.
61
+ BASE_BRANCH: ${{ github.ref }} # What we're deploying.
62
+ FOLDER: _build # The folder the action should deploy.
63
+ CLEAN: true # Automatically remove deleted files from the deploy branch
0 commit comments