diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fc2a83b..41d6a82 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,14 +36,20 @@ jobs: remote_path: '/var/www/guias/teste/', } # Add more apps as needed + steps: + run: echo ls -la + run: echo $PWD + run: echo ${{ matrix.app.path }} + run: echo ${{ matrix.app.remote_path }} - steps: - - name: Deploy with rsync - uses: burnett01/rsync-deployments@5.2 - with: - switches: -avzr --quiet --delete - path: ${{ matrix.app.path }} - remote_path: ${{ matrix.app.remote_path }} - remote_host: ${{ secrets.HOST }} - remote_user: ${{ secrets.USERNAME }} - remote_key: ${{ secrets.SSH_KEY }} + - name: Deploy with rsync + uses: burnett01/rsync-deployments@5.2 + with: + switches: -avzr --quiet --delete + path: ${{ matrix.app.path }} + remote_path: ${{ matrix.app.remote_path }} + remote_host: ${{ secrets.HOST }} + remote_user: ${{ secrets.USERNAME }} + remote_key: ${{ secrets.SSH_KEY }} + - name: Console current folder + run: echo $PWD