Skip to content

update-theme-graphs #21

update-theme-graphs

update-theme-graphs #21

name: update-theme-graphs
on:
schedule:
- cron: "0 0 1 * *"
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install synapseclient pandas
- name: Update portal graphs
run: |
python utils/tally_themes.py
env:
SYNAPSE_AUTH_TOKEN: ${{ secrets.SYNAPSE_AUTH_TOKEN }}