edit of main.yml #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to SFTP | |
on: | |
push: | |
branches: | |
- master # Change this to your target branch zkouska | |
jobs: | |
deploy-backend: | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update packages and install lftp | |
run: | | |
apt-get update | |
apt-get install -y lftp | |
- name: Deploy Backend via SFTP | |
run: lftp -e "set ssl:verify-certificate no; open -u ${{ secrets.FTP_USERNAME }},${{ secrets.FTP_PASSWORD }} 287586.w86.wedos.net && mirror -R Fitmo_backend /www/subdom/beTest" | |
deploy-frontend: | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update packages and install lftp | |
run: | | |
apt-get update | |
apt-get install -y lftp | |
- name: Deploy Frontend via SFTP | |
run: lftp -e "set ssl:verify-certificate no; open -u ${{ secrets.FTP_USERNAME }},${{ secrets.FTP_PASSWORD }} 287586.w86.wedos.net && mirror -R Fitmo_frontend /www/subdom/devTest" |