Skip to content

Commit

Permalink
10th times the charm
Browse files Browse the repository at this point in the history
  • Loading branch information
LPX55 committed Oct 17, 2023
1 parent 3896b83 commit 027a4f0
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/Bench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Benchmark

on:
push:
branches: [ main ]
branches: [ master ]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -53,6 +53,11 @@ jobs:
with:
name: bench-logs
path: logs/

- name: 'Echo download path'
run: echo ${{steps.download.outputs.download-path}}

- name: Commit and push if changed
run: |
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
git add -A
git diff --quiet && git diff --staged --quiet || git commit -m "Update benchmark logs"
git push

0 comments on commit 027a4f0

Please sign in to comment.