Delete workflows.html #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | ||
- 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 |