chore: decouple lftp installation from deployment step in CI pipeline
This commit is contained in:
parent
91a573a95a
commit
36c9a1e41a
1 changed files with 2 additions and 1 deletions
|
|
@ -44,10 +44,11 @@ jobs:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist
|
path: dist
|
||||||
|
|
||||||
- name: Deploy to Production via FTP
|
- name: Install lftp
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install -y lftp
|
apt-get update && apt-get install -y lftp
|
||||||
|
|
||||||
|
- name: Deploy to Production via FTP
|
||||||
env:
|
env:
|
||||||
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
|
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
|
||||||
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
|
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue