-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (32 loc) · 988 Bytes
/
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
name: Deploy to FTP
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20.9.0
- name: Install dependencies and build Next.js app
run: |
cd client
npm install
npm run build
- name: Install lftp
run: sudo apt install lftp
- name: Configure lftp
run: |
mkdir ~/.lftp
echo "set ssl:verify-certificate false;" >> ~/.lftp/rc
- name: Load Secrets
run: |
echo "machine ${{ secrets.FTP_HOST }} login ${{ secrets.FTP_USERNAME }} password ${{ secrets.FTP_PASSWORD }}" > ~/.netrc
- name: Upload contents of .next folder
run: |
lftp -e "mirror --only-newer --parallel=100 -R ./client/.next/ /drawing.shubhamlal.in/.next/" ${{ secrets.FTP_HOST }}