aeroEcho/.gitea/workflows/deploy.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 58: mapping key "name" already defined at line 1 line 60: mapping key "on" already defined at line 3 line 65: mapping key "jobs" already defined at line 8
Roozbeh Karimi 5251ead1ff merged
2025-10-07 16:17:54 -04:00

114 lines
2.7 KiB
YAML

name: Deploy to Production
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: |
npm install
cd backend && npm install && cd ..
cd frontend && npm install && cd ..
- name: Run backend tests
run: |
cd backend
npm test || echo "No tests configured"
- name: Build frontend
run: |
cd frontend
npm run build
- name: Deploy to server
env:
SERVER_HOST: ${{ secrets.SERVER_HOST }}
SERVER_USER: ${{ secrets.SERVER_USER }}
SSH_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
# Setup SSH
mkdir -p ~/.ssh
echo "$SSH_KEY" > ~/.ssh/deploy_key
chmod 600 ~/.ssh/deploy_key
ssh-keyscan -H $SERVER_HOST >> ~/.ssh/known_hosts
# Deploy
ssh -i ~/.ssh/deploy_key $SERVER_USER@$SERVER_HOST << 'EOF'
cd /var/www/aeroEcho
git pull origin main
npm run install:all
cd frontend && npm run build && cd ..
pm2 restart ecosystem.config.js
EOF
name: Deploy to Production
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
npm install
cd backend && npm install && cd ..
cd frontend && npm install && cd ..
- name: Run backend tests
run: |
cd backend
npm test || echo "No tests configured"
- name: Build frontend
run: |
cd frontend
npm run build
- name: Deploy to server
env:
SERVER_HOST: ${{ secrets.SERVER_HOST }}
SERVER_USER: ${{ secrets.SERVER_USER }}
SSH_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
# Setup SSH
mkdir -p ~/.ssh
echo "$SSH_KEY" > ~/.ssh/deploy_key
chmod 600 ~/.ssh/deploy_key
ssh-keyscan -H $SERVER_HOST >> ~/.ssh/known_hosts
# Deploy
ssh -i ~/.ssh/deploy_key $SERVER_USER@$SERVER_HOST << 'EOF'
cd /var/www/aeroEcho
git pull origin main
npm run install:all
cd frontend && npm run build && cd ..
pm2 restart ecosystem.config.js
EOF