Run Python Scripts #271
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 Python Scripts | |
on: | |
schedule: | |
- cron: '0 5 * * *' # Runs at 05:00 UTC every day | |
# You can also trigger this workflow manually | |
workflow_dispatch: | |
jobs: | |
run-scripts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' # Specify the Python version | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Fetch the napari plugin data | |
run: python fetch_napari_data.py | |
- name: Create static html files | |
run: python create_static_html_files.py | |
- name: Configure Git | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
- name: Commit and Push changes | |
run: | | |
git add . | |
git commit -m "Update data files" -a || echo "No changes to commit" | |
git push |