From f7095fe3e7921def954d56cb7ca5748f38dd75e3 Mon Sep 17 00:00:00 2001 From: sikai zhang Date: Mon, 18 Aug 2025 16:50:56 +0800 Subject: [PATCH] MNT correct publish_dir for html files of asv benchmarks --- .github/workflows/asv.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/asv.yml b/.github/workflows/asv.yml index 00bbd95..df06c60 100644 --- a/.github/workflows/asv.yml +++ b/.github/workflows/asv.yml @@ -95,14 +95,14 @@ jobs: - name: Copy results to publish directory run: | - cp -r asv_benchmarks/results html/ + cp -r asv_benchmarks/results asv_benchmarks/html/results - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4 if: github.event_name == 'push' with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./html + publish_dir: asv_benchmarks/html keep_files: true user_name: 'github-actions[bot]' user_email: 'github-actions[bot]@users.noreply.github.com'