diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ba8338..7dcb2f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,3 +17,14 @@ jobs: with: source: "tests/a.txt,tests/b.txt" target: "test" + + - name: copy file via ssh key + uses: appleboy/scp-action@master + env: + HOST: ${{ secrets.HOST }} + USERNAME: ${{ secrets.USERNAME }} + PORT: ${{ secrets.PORT }} + KEY: ${{ secrets.KEY }} + with: + source: "tests/a.txt,tests/b.txt" + target: "test"