Merge pull request #2065 from gtech-mulearn/dev-server #228
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: Prod CI | |
on: | |
push: | |
branches: [ "production" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure SSH key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.PROD_SSH_PRIVATE_KEY }} | |
- name: Deploy | |
env: | |
REMOTE_IP: ${{ secrets.PROD_REMOTE_IP }} | |
PROJECT_PATH: ${{ secrets.PROJECT_PATH }} | |
run: | | |
ssh -o StrictHostKeyChecking=no ubuntu@$REMOTE_IP "cd $PROJECT_PATH && git pull && docker-compose up --build -d" |