Bump urllib3 from 1.26.9 to 1.26.19 #159
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
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 |