Skip to content

Bump werkzeug from 2.0.3 to 3.0.6 #162

Bump werkzeug from 2.0.3 to 3.0.6

Bump werkzeug from 2.0.3 to 3.0.6 #162

name: Update seminars
on:
issues:
types: [opened, edited, deleted]
push:
branches:
- main
pull_request:
jobs:
update-seminars:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: abatilo/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
poetry install
- name: Setup
run: |
mkdir -p build/
cp README.md build/instructions.md
cp -r images build/
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
run: poetry run python scripts/update-seminars.py > build/index.md
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
enable_jekyll: true