Skip to content

Commit

Permalink
Merge branch 'bugfix/1328-benchmark-should-error'
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdvegas committed Jun 22, 2022
2 parents cf3f73b + d4c3026 commit 44bc696
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,11 @@ jobs:

- name: Git commit and push
run: |
git add --all
git commit \
-m "Generated from GitHub "${{ github.workflow }}" Workflow" \
&& git push origin master \
|| echo "Nothing new to commit"
if [[ "$(git status --porcelain)" == "" ]]; then
echo "Nothing new to commit"
else
git add --all
git commit -m "Generated from GitHub "${{ github.workflow }}" Workflow"
git push origin master
fi
working-directory: src

0 comments on commit 44bc696

Please sign in to comment.