Skip to content

Commit

Permalink
Add error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinnkunn committed Oct 28, 2024
1 parent a9d5b81 commit 621b7fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
cp -r docs/dist_sphinx/* gh-pages/
cd gh-pages
git add .
git commit -m "Update docs"
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/AISViz/AISdb.git gh-pages
git commit -m "Update docs" || echo "No changes to commit"
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/AISViz/AISdb.git gh-pages || echo "Push failed"
- name: Clean Up
run: |
Expand Down

0 comments on commit 621b7fb

Please sign in to comment.