Skip to content

Commit

Permalink
Merge pull request #926 from milvus-io/fix/master-workflow
Browse files Browse the repository at this point in the history
fix: continue-on-error
  • Loading branch information
ThyeeZz authored Sep 3, 2024
2 parents df89329 + 1b25bba commit baf7995
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ jobs:
git config --global user.email "Milvus-doc-bot@zilliz.com"
git config --global user.name "Milvus-doc-bot"
yarn generate:en
- name: Commit and push
run: |
git add .
git commit -m "Generate en docs"
git push -f origin master
continue-on-error: true

- name: Trigger milvus.io
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/translate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@ jobs:
echo DEEPL_API_KEY=${{secrets.DEEPL_API_KEY}} >> .env
echo GITHUB_TOKEN=${{secrets.GH_TOKEN}} >> .env
yarn translate
- name: Commit and push
run: |
git add .
git commit -m "Translate docs"
git push -f origin master
continue-on-error: true

- name: Trigger milvus.io
run: |
Expand Down

0 comments on commit baf7995

Please sign in to comment.