Download #1143
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: Download | |
on: | |
#After benchmarks run | |
schedule: | |
- cron: '0 5 * * *' | |
workflow_dispatch: | |
jobs: | |
run: | |
name: Update benchmark versions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Update source code | |
run: python3 downloadData.py | |
env: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
message: 'Update benchmark data' | |
add: '*.csv' | |
author_name: 'Nussknacker' | |
author_email: '[email protected]' | |
committer_name: 'Nussknacker' | |
committer_email: '[email protected]' | |