Skip to content

Commit

Permalink
fix deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham-Lal committed Dec 22, 2023
1 parent 9a286ff commit 0dd9e75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
npm install
npm run build
- name: Install lftp
run: sudo apt install lftp

- name: Deploy via FTP
run: |
lftp -e "open -u ${{ secrets.FTP_USERNAME }},${{ secrets.FTP_PASSWORD }} ${{ secrets.FTP_HOST }}; set ssl:verify-certificate no; mirror -R -e -x .git/ -x .github/ -x .next/ -x node_modules/ . /; bye"

0 comments on commit 0dd9e75

Please sign in to comment.