update metrics #1815
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: Analysis | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
make_report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: pip3 install git+https://github.com/paulgessinger/headwind.git@06cd679 | |
- name: Run publish | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Action" | |
rm -rf report | |
hdw publish headwind.yml report | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: report # The folder the action should deploy. | |