Daily update #1576
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: Daily update | |
on: | |
schedule: | |
- cron: '0 16 * * *' | |
jobs: | |
daily_update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure git | |
run: | | |
git config --global user.name 'Daily update script' | |
git config --global user.email 'fxcoudert@users.noreply.github.com' | |
- name: Check python version | |
run: python3 -V | |
- name: Run update script | |
env: | |
FIGSHARE_TOKEN: ${{ secrets.FIGSHARE_TOKEN }} | |
PYTHONUNBUFFERED: 1 | |
run: ./update.sh |