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 7c23a57Copy full SHA for 7c23a57
.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
+ - 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/github-pages-deploy-action@releases/v4
58
59
+ branch: gh-pages # The branch the action should deploy to.
60
+ folder: _build # The folder the action should deploy.
61
+ clean: true # Automatically remove deleted files from the deploy branch
62
+ dry_run: ${{ github.event_name == 'push' }}
0 commit comments