-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 |