From d6ec2ea488af85dc339bd7c398589cecde5859e6 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Tue, 7 Apr 2020 15:14:17 +0100 Subject: [PATCH] CI: Not deleting docs symlink in prod --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b9d28b4f2d69..db1fc30111a2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,7 +134,7 @@ jobs: if: github.event_name == 'push' - name: Upload web - run: rsync -az --delete --exclude='pandas-docs' --exclude='Pandas_Cheat_Sheet*' web/build/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas + run: rsync -az --delete --exclude='pandas-docs' --exclude='docs' --exclude='Pandas_Cheat_Sheet*' web/build/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas if: github.event_name == 'push' - name: Upload dev docs