Skip to content

Commit

Permalink
Backport PR #55380 on branch 2.1.x (CI: Exclude benchmarks directory …
Browse files Browse the repository at this point in the history
…when publishing docs) (#55434)

Backport PR #55380: CI: Exclude benchmarks directory when publishing docs

Co-authored-by: Marc Garcia <garcia.marc@gmail.com>
  • Loading branch information
meeseeksmachine and datapythonista committed Oct 7, 2023
1 parent c0f932b commit 81a192b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docbuild-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: cp doc/cheatsheet/Pandas_Cheat_Sheet* web/build/

- name: Upload web
run: rsync -az --delete --exclude='pandas-docs' --exclude='docs' web/build/ web@${{ secrets.server_ip }}:/var/www/html
run: rsync -az --delete --exclude='pandas-docs' --exclude='docs' --exclude='benchmarks' web/build/ web@${{ secrets.server_ip }}:/var/www/html
if: github.event_name == 'push' && github.ref == 'refs/heads/main'

- name: Upload dev docs
Expand Down

0 comments on commit 81a192b

Please sign in to comment.