Skip to content

Commit

Permalink
fix of main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciframa committed Jun 24, 2024
1 parent c252ccb commit 864c6ec
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Deploy Backend to FTP server
uses: SamKirkland/[email protected]
with:
ftp-server: 287586.w86.wedos.net
ftp-username: ${{ secrets.FTP_USERNAME }}
ftp-password: ${{ secrets.FTP_PASSWORD }}
local-dir: Fitmo_backend # Specify the directory containing backend files
server-dir: /www/subdom/beTest # Change this to your target directory on the server
server: ftp://287586.w86.wedos.net
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: Fitmo_backend # Directory containing backend files
server-dir: /www/subdom/beTest # Target directory on the server for backend

deploy-frontend:
runs-on: ubuntu-latest
Expand All @@ -32,8 +32,8 @@ jobs:
- name: Deploy Frontend to FTP server
uses: SamKirkland/[email protected]
with:
ftp-server: 287586.w86.wedos.net
ftp-username: ${{ secrets.FTP_USERNAME }}
ftp-password: ${{ secrets.FTP_PASSWORD }}
local-dir: Fitmo_frontend # Specify the directory containing frontend files
server-dir: /www/subdom/devTest # Change this to your target directory on the server
server: ftp://287586.w86.wedos.net
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: Fitmo_frontend # Directory containing frontend files
server-dir: /www/subdom/devTest # Target directory on the server for frontend

0 comments on commit 864c6ec

Please sign in to comment.