Fetch notes #28
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: Fetch notes | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 */4 * * *" | |
permissions: | |
contents: write | |
concurrency: | |
group: all_workflows | |
jobs: | |
fetch: | |
name: Fetch notes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: pip | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Checkout previous version | |
uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
path: previous | |
- name: Copy files into place | |
run: cp -r previous/* output | |
- name: Fetch notes | |
run: python -m x_notes | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: output | |
single-commit: true |