Add files via upload #143
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: Run Update Script | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' # or any version you prefer | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pelican markdown typogrify pybtex | |
- name: Run Update Script | |
run: | | |
chmod +x bin/update # Make sure the script is executable | |
bin/update |