Skip to content

fix: got the README tests also working through the test_demos.sh to a… #88

fix: got the README tests also working through the test_demos.sh to a…

fix: got the README tests also working through the test_demos.sh to a… #88

name: Update submodules
on:
push:
branches:
- main
workflow_dispatch:
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️ ivy
uses: actions/checkout@v4
with:
repository: unifyai/ivy
token: ${{ secrets.IVY_BRANCH_TOKEN }}
submodules: recursive
- name: Update submodules
run: |
git config --global user.email "[email protected]"
git config --global user.name "ivy-branch"
git submodule update --remote docs/demos
git add .
git commit -m "Update demos 🤖"
git push origin main