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 d79e25e commit 7729b39Copy full SHA for 7729b39
.github/workflows/build_docs.yml
@@ -24,11 +24,14 @@ jobs:
24
- name: Create .nojekyll
25
run: |
26
touch ../_build/.nojekyll
27
- - name: Commit and push changes
+ - name: Copy build files to gh-pages branch
28
29
git fetch origin
30
git checkout -b gh-pages origin/gh-pages
31
- cp -r ../_build ./
+ git rm -rf *
32
+ cp -r ../_build/* ./
33
+ - name: Commit and push changes
34
+ run: |
35
git config --global user.name "CAMS SDD"
36
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
37
git add ./.
0 commit comments