Skip to content

Delete pdf/88.pdf

Delete pdf/88.pdf #8

# Deze action zou moeten draaien als de template.html wordt aangepast, zodat de nieuwe info er komt te staan.
name: Update from 'template.html'
on:
push:
paths:
- 'template.html'
jobs:
update-index-html-from-template-html:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4

Check failure on line 14 in .github/workflows/regnerate-index.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/regnerate-index.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Update index.html from new template.html
run: |
echo "Updating index.html from new template.html"
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 from new template.html"
git push