Skip to content

Fetch publications

Fetch publications #63

Workflow file for this run

name: Fetch publications
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" #runs at 00:00 UTC every Sunday
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8 #install the python needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: get new publications # run the fetch_publications.py script
run: |
python fetch_publications.py
- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "Update publications" -a
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master