diff options
| author | Pheenoh <pheenoh@gmail.com> | 2023-06-27 11:16:48 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-27 11:16:48 -0600 |
| commit | 8603f35cdcf172a8d31820d1fa9c843d3eb006a9 (patch) | |
| tree | f9384d92129d847050093aec6851b385636dd0a7 /.github | |
| parent | 43ff6501d9c02f1f80fcc94570c41d664bfc1014 (diff) | |
Progress fix (#354)
* add python deps, print -> LOG
* add type hinting
* add more debug loggin
* more python deps
* aciton fix
* make wibo optional for progress history
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/cd.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 5894449176..f1c45f0a37 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -29,7 +29,10 @@ jobs: run_id: ${{ steps.get_run_id.outputs.run_id }} name: artifact-${{ steps.get_run_id.outputs.run_id }} workflow: ${{ env.WORKFLOW }} + - name: Install Python Deps + run: | + pip install GitPython rich - name: Upload Progress to Frogress env: PROGRESS_API_KEY: ${{ secrets.FROGRESS_API_KEY }} - run: ./tp upload-progress -b https://progress.deco.mp/ -p twilightprincess -v gcn_usa progress-${{ steps.get_run_id.outputs.run_id }}.json
\ No newline at end of file + run: ./tp upload-progress progress-${{ steps.get_run_id.outputs.run_id }}.json -b https://progress.deco.mp/ -p twilightprincess -v gcn_usa
\ No newline at end of file |
