Update deploy.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy App | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install SSH Key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Deploy to EC2 | |
run: | | |
ssh -o StrictHostKeyChecking=no ${{ secrets.SSH_CONNECTION_URL }} << 'EOF' | |
echo "Current PATH: $PATH" | |
which node | |
which npm | |
which pm2 | |
node -v | |
npm -v | |
cd /home/ubuntu/octasol | |
git pull origin main | |
source /home/ubuntu/.bashrc | |
source /home/ubuntu/.profile | |
npm install | |
npm run build | |
pm2 reload octasol-app | |
EOF | |