Add Madrid 2024 #12
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
name: Publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install poetry | |
poetry install --no-dev | |
- name: Generate | |
run: | | |
poetry run python festivus.py | |
- name: Publish | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
cd generated | |
sudo chown -R $(id -un) . | |
mv ../.git . | |
git branch -M gh-pages | |
git add -f . | |
git commit -m 'Deploy' | |
git push --force origin HEAD |