diff --git a/.github/workflows/regenerate-gallery.yml b/.github/workflows/regenerate-gallery.yml deleted file mode 100644 index 4a026d7..0000000 --- a/.github/workflows/regenerate-gallery.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Deze file zou de `index.html` aan moeten passen, als de nieuwe thumbnails geextraheerd zijn. - -on: - workflow_run: - workflows: extract-coverpages - types: - - completed. - -jobs: - add-new-thumbnails-to-gallery: - runs-on: ubuntu-latest - steps: - - name: "Checkout project" - uses: actions/checkout@v4 - - name: "Set up Python" - uses: actions/setup-python@v5 - - - name: "Update index.html with new images." - run: | - echo "Updating index.html with new images." - python3 generate-index.py - - - name: "Commit changes" - run: | - git config --local user.email " - git config --local user.name "GitHub Action" - git add index.html - git commit -m "[CI/CD] Update index.html with new images" - git push