Skip to content

Commit

Permalink
Try to using other way in exec
Browse files Browse the repository at this point in the history
Signed-off-by: Toomore Chiang <toomore0929@gmail.com>
  • Loading branch information
toomore committed Jan 7, 2025
1 parent 2610931 commit 7ba2a1d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,12 @@ jobs:
- name: Install dependencies
run: cd docs; poetry install --with=dev
- name: Build Docs
run: cd docs; poetry shell; sh ./run.sh;
- name: Build Docs (zh-tw)
run: cd docs; poetry shell; sh ./run_zh-tw.sh;
- name: Build Docs (en)
run: cd docs; poetry shell; sh ./run_en.sh;
run: |
cd docs
poetry shell
sh ./run.sh
sh ./run_zh-tw.sh
sh ./run_en.sh
- name: Clean the all files
env:
AWS_ACCESS_KEY_ID: ${{ secrets.DOC_S3_ID }}
Expand Down

0 comments on commit 7ba2a1d

Please sign in to comment.