Check if same photos exist #88
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 | |
jobs: | |
deploy-backend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update packages and install lftp | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y lftp | |
# - name: Set environment variable | |
# run: echo "FRONTEND_URL=${{ secrets.VUE_APP_FITMO_FRONTEND_URL }}" >> Fitmo_backend/.env | |
- name: Deploy Backend via SFTP | |
env: | |
FTP_USERNAME: ${{ secrets.FTP_USERNAME }} | |
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }} | |
run: | | |
lftp -e "set ssl:verify-certificate no; open -u $FTP_USERNAME,$FTP_PASSWORD 287586.w86.wedos.net && mirror -R Fitmo_backend /www/subdom/be" | |
deploy-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update packages and install lftp | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y lftp | |
- name: Navigate to frontend directory and install dependencies | |
run: | | |
cd Fitmo_frontend | |
npm install | |
- name: Set environment variable | |
run: echo "VUE_APP_FITMO_BACKEND_URL=${{ secrets.VUE_APP_FITMO_BACKEND_URL }}" >> Fitmo_frontend/.env | |
- name: Build Frontend | |
run: | | |
cd Fitmo_frontend | |
npm run build | |
- name: Deploy Frontend via SFTP | |
env: | |
FTP_USERNAME: ${{ secrets.FTP_USERNAME }} | |
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }} | |
run: | | |
cd Fitmo_frontend/dist # Navigate to the build output directory | |
lftp -e "set ssl:verify-certificate no; open -u $FTP_USERNAME,$FTP_PASSWORD 287586.w86.wedos.net && mirror -R . /www/subdom/dev" |