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 f5fca05 commit 6545b08Copy full SHA for 6545b08
.github/workflows/publish_docs.yml
@@ -27,11 +27,10 @@ jobs:
27
TARGET_REPO: ${{ secrets.TARGET_REPO }}
28
TARGET_TOKEN: ${{ secrets.TARGET_TOKEN }}
29
run: |
30
+ git clone https://github.com/${TARGET_REPO}.git -b main target_repo
31
+ cd target_repo
32
git config --local user.name "github-actions[bot]"
33
git config --local user.email "github-actions[bot]@users.noreply.github.com"
- git clone https://github.com/${TARGET_REPO}.git target_repo
- cd target_repo
34
- git checkout main
35
find . -mindepth 1 -maxdepth 1 ! -name ".github" ! -name "." ! -name ".git" -exec rm -rf {} +
36
cp -r ../docs/_build/html/* ./
37
git add .
0 commit comments