File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,23 @@ jobs:
62
62
mkdir -p build && cd build && rm -rf *
63
63
wget https://github.com/vovkos/doxyrest/releases/download/doxyrest-2.1.2/doxyrest-2.1.2-linux-amd64.tar.xz
64
64
tar xf doxyrest-2.1.2-linux-amd64.tar.xz
65
- cmake .. -DDPCTL_ENABLE_DOXYREST=ON -DDoxyrest_DIR=`pwd`/doxyrest-2.1.2-linux-amd64
65
+ cmake .. -DDPCTL_USE_MULTIVERSION_TEMPLATE=ON - DDPCTL_ENABLE_DOXYREST=ON -DDoxyrest_DIR=`pwd`/doxyrest-2.1.2-linux-amd64
66
66
make Sphinx
67
- - name : Deploy docs
68
- uses : peaceiris/actions-gh-pages@v3
69
- with :
70
- github_token : ${{ secrets.GITHUB_TOKEN }}
71
- publish_dir : docs/generated_docs/docs
67
+ mv docs/generated_docs/docs ~/docs
68
+ git clean -dfx
69
+ git checkout gh-pages
70
+ cd master
71
+ git rm -rf *
72
+ mv ~/docs/* .
73
+ git add .
74
+ git commit -m "Latest docs."
75
+ git push
76
+
77
+
78
+
79
+
80
+ # - name: Deploy docs
81
+ # uses: peaceiris/actions-gh-pages@v3
82
+ # with:
83
+ # github_token: ${{ secrets.GITHUB_TOKEN }}
84
+ # publish_dir: docs/generated_docs/docs
You can’t perform that action at this time.
0 commit comments