Skip to content

wip: fix mail on production #93

wip: fix mail on production

wip: fix mail on production #93

Workflow file for this run

name: Deploy to cPanel
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '20.10.0'
- 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_SERVER }} login ${{ secrets.FTP_USERNAME }} password ${{ secrets.FTP_PASSWORD }}" > ~/.netrc
- name: Install dependencies and build
env:
VITE_SERVER_URL: ${{ secrets.VITE_SERVER_URL }}
VITE_SYNCFUSION_KEY: ${{ secrets.VITE_SYNCFUSION_KEY }}
run: |
cd client
npm install
npm run build
- name: Upload contents of dist folder
run: |
lftp -e "mirror --only-newer --parallel=100 -R ./client/dist/ /debateme.shubhamlal.in/" ${{ secrets.FTP_SERVER }}
- name: Upload backend
run: |
lftp -e "mirror --only-newer --parallel=100 -R ./server/ /debateme-api/" ${{ secrets.FTP_SERVER }}