Skip to content

Commit

Permalink
identation
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotcestari committed Jun 13, 2024
1 parent 0976174 commit b03d321
Showing 1 changed file with 14 additions and 18 deletions.
32 changes: 14 additions & 18 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,12 @@ jobs:
strategy:
matrix:
app:
- {
name: 'next-auth',
path: './apps/next-auth/dist/',
remote_path: '/var/www/guias/next-auth/',
}
- {
name: 'teste',
path: './apps/teste/dist/',
remote_path: '/var/www/guias/teste/',
}
- name: 'next-auth'
path: './apps/next-auth/dist/'
remote_path: '/var/www/guias/next-auth/'
- name: 'teste'
path: './apps/teste/dist/'
remote_path: '/var/www/guias/teste/'
# Add more apps as needed

steps:
Expand All @@ -43,11 +39,11 @@ jobs:
echo ${{ matrix.app.path }}
ls -la
- 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 }}
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 }}

0 comments on commit b03d321

Please sign in to comment.