We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee0fcd4 commit e35ffe8Copy full SHA for e35ffe8
1 file changed
.github/workflows/benchmark.yml
@@ -46,11 +46,18 @@ jobs:
46
python utils/print_env.py
47
- name: Diffusers Benchmarking
48
env:
49
- HF_TOKEN: ${{ secrets.DIFFUSERS_BOT_TOKEN }}
+ HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
50
run: |
51
- cd benchmarks && python run_all.py && python push_results.py
+ cd benchmarks && python run_all.py
52
mkdir $BASE_PATH && mv *.csv $BASE_PATH
53
54
+ - name: Push results to the Hub
55
+ env:
56
+ HF_TOKEN: ${{ secrets.DIFFUSERS_BOT_TOKEN }}
57
+ run:
58
+ cd benchmarks && cp $BASE_PATH/collated_results.csv .
59
+ python push_results.py
60
+
61
- name: Test suite reports artifacts
62
if: ${{ always() }}
63
uses: actions/upload-artifact@v4
0 commit comments