diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20f7712131ba4..23e452f682b60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,6 +136,9 @@ jobs: echo "${{ secrets.server_ip }} ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE1Kkopomm7FHG5enATf7SgnpICZ4W2bw+Ho+afqin+w7sMcrsa0je7sbztFAV8YchDkiBKnWTG4cRT+KZgZCaY=" > ~/.ssh/known_hosts if: ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}} + - name: Copy cheatsheets into site directory + run: cp doc/cheatsheet/Pandas_Cheat_Sheet* web/build/ + - name: Upload web run: rsync -az --delete --exclude='pandas-docs' --exclude='docs' web/build/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas if: ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}} @@ -147,9 +150,6 @@ jobs: - name: Move docs into site directory run: mv doc/build/html web/build/docs - - name: Copy cheatsheets into site directory - run: cp doc/cheatsheet/Pandas_Cheat_Sheet* web/build/ - - name: Save website as an artifact uses: actions/upload-artifact@v2 with: