-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,8 @@ jobs: | |
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build documentation site | ||
run: pnpm docs:release | ||
run: | | ||
pnpm docs:release | ||
git clone https://${{secrets.CODING_USERNAME}}:${{secrets.CODING_PASSWD}}@e.coding.net/weidongshan/vuepress-next-docs/rtos.git --branch master --single-branch master --depth=1 | ||
echo "ls master" && ls master | ||
cp -r docs/.vuepress/dist/* master | ||
|
@@ -46,7 +47,7 @@ jobs: | |
git add . | ||
git commit -m "Update documentation" -a || true | ||
git push origin master | ||
cd - | ||
ls && cd - && ls | ||
- name: Deploy to GitHub Pages | ||
uses: crazy-max/[email protected] | ||
|