Skip to content

Commit

Permalink
echo console log
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotcestari committed Jun 13, 2024
1 parent 15a5452 commit e806bf0
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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/[email protected]
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

0 comments on commit e806bf0

Please sign in to comment.