Update gradle.yml #15
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: Java Deploy | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
Deploy: | |
name: Deploy to EC2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build & Deploy | |
env: | |
PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
HOSTNAME: ${{secrets.SERVER_IP}} | |
USER_NAME: ${{secrets.SSH_USERNAME}} | |
run: | | |
echo "$PRIVATE_KEY" > private_key && chmod 600 private_key | |
ssh -o StrictHostKeyChecking=no -i private_key ${USER_NAME}@${HOSTNAME} ' | |
# Now we have got the access of EC2 and we will start the deploy . | |
cd /home/ubuntu/<PROJECT_DIRECTORY> && | |
git checkout dev && | |
git fetch --all && | |
git reset --hard origin/dev && | |
git pull origin dev && | |
sudo npm i && | |
sudo npm run build && | |
sudo pm2 stop ./dist/index.js && | |
sudo pm2 start ./dist/index.js | |
' | |