diff --git a/.github/workflows/docker-build-latest.yml b/.github/workflows/docker-build-latest.yml index 55d7723..4fe523f 100644 --- a/.github/workflows/docker-build-latest.yml +++ b/.github/workflows/docker-build-latest.yml @@ -21,7 +21,23 @@ concurrency: cancel-in-progress: true jobs: + updateNotebooks: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Nodejs + uses: actions/setup-node@v4 + with: + node-version: 22 + - name: Install dependencies + run: npm install --legacy-peer-deps + - name: Update Notebooks + run: node updatenotebooks.js + - name: commit and push + uses: stefanzweifel/git-auto-commit-action@v5 docker: + needs: updateNotebooks runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/update-notebooks.yml b/.github/workflows/update-notebooks.yml index a8f00a4..cdedb21 100644 --- a/.github/workflows/update-notebooks.yml +++ b/.github/workflows/update-notebooks.yml @@ -13,7 +13,7 @@ jobs: with: node-version: 22 - name: Install dependencies - run: npm install + run: npm install --legacy-peer-deps - name: Update Notebooks run: node updatenotebooks.js - name: commit and push