Skip to content

Bump urllib3 from 1.26.9 to 1.26.19 #159

Bump urllib3 from 1.26.9 to 1.26.19

Bump urllib3 from 1.26.9 to 1.26.19 #159

Workflow file for this run

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