Skip to content

Commit

Permalink
remove auto-push
Browse files Browse the repository at this point in the history
  • Loading branch information
eranreshef-starkware committed May 5, 2024
1 parent d2e435e commit 096c832
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,22 @@ jobs:
output-file-path: output.txt
# Where the previous data file is stored
##external-data-json-path: ./cache/benchmark-data.json
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# github-token: ${{ secrets.GITHUB_TOKEN }}
# auto-push: true

# - name: Setup upterm session
# uses: lhotari/action-upterm@v1

# # Push gh-pages branch by yourself
# - name: Push benchmark result
# run: git push remote gh-pages:gh-pages --no-verify
# Push gh-pages branch by yourself
- name: Push benchmark result
run: |
git fetch gh-pages:gh-pages
git switch gh-pages
git pull gh-pages
git add dev/bench/data.js dev/bench/index.html
git commit -m "add Benchmark (customSmallerIsBetter) benchmark result for $GITHUB_SHA"
git push gh-pages:gh-pages --no-verify
git checkout -
# - name: Clean the deployment
Expand Down

0 comments on commit 096c832

Please sign in to comment.