From 1151c9d3f2113d6562e86a19c22a959629ba522e Mon Sep 17 00:00:00 2001 From: Awilum Date: Sat, 21 Nov 2020 23:24:12 +0300 Subject: [PATCH] feat(tests): restore deploy #477 --- .github/workflows/tests.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7932318c..7c5eded4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,5 +35,16 @@ jobs: if: "matrix.php >= 8" run: composer update --${{ matrix.dependency-version }} --ignore-platform-req=php --no-interaction --no-progress + - name: Deploy on Test + if: "matrix.os == 'ubuntu-latest' && matrix.php == 7.3" + uses: SamKirkland/FTP-Deploy-Action@4.0.0 + with: + server: ${{ secrets.FTP_HOST }} + port: 21 + username: ${{ secrets.FTP_USERNAME }} + password: ${{ secrets.FTP_PASSWORD }} + server-dir: ${{ secrets.FTP_DIR }} + log-level: verbose + - name: Run Tests run: ./vendor/bin/pest