-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (41 loc) · 1.53 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Navigate to frontend directory
run: cd Fitmo_frontend # Adjust this to your frontend directory path
- name: Install dependencies and build Frontend
run: |
npm install
npm run build # Adjust this based on your actual build command
- name: Deploy Frontend via SFTP
env:
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
run: |
cd dist # Navigate to the build output directory
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"