Skip to content

Commit

Permalink
workflows: fix update-files.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
sinaatalay committed Jul 23, 2024
1 parent 7212461 commit c11c3f3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/update-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,28 @@ jobs:
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Update schema.json
continue-on-error: true
run: |
hatch run docs:update-schema
git add schema.json
git commit -m "docs: update schema.json"
- name: Update `examples` folder
continue-on-error: true
run: |
hatch run docs:update-examples
git add examples/*
git add docs/assets/images/*.png
git commit -m "docs: update examples"
- name: Update entry figures
continue-on-error: true
run: |
hatch run docs:update-entry-figures
git add docs/assets/images/**/*.png
git commit -m "docs: update entry figures"
- name: Push changes
continue-on-error: true
run: |
git push origin HEAD:main

0 comments on commit c11c3f3

Please sign in to comment.