[FIX] bugs fixed #3
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: Docker CI/CD | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
API_IMAGE_NAME: github-api | |
API_CONTAINER_NAME: github-api | |
UI_IMAGE_NAME: github-ui | |
UI_CONTAINER_NAME: github-ui | |
UI_PORT: 4000:4000 | |
API_PORT: 4001:4001 | |
REPO_NAME: ${{ github.repository }} | |
REGISTRY: ghcr.io | |
SSH_HOST: ${{ secrets.SERVER_IP }} | |
SSH_USER: ${{ secrets.SERVER_USERNAME }} | |
SSH_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
jobs: | |
build_and_push: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push API Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./API.Dockerfile | |
push: true | |
tags: ${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.API_IMAGE_NAME }}-${{ github.sha }} | |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.API_IMAGE_NAME }}:buildcache | |
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.API_IMAGE_NAME }}:buildcache,mode=max | |
- name: Build and push UI Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./UI.Dockerfile | |
push: true | |
tags: ${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.UI_IMAGE_NAME }}-${{ github.sha }} | |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.UI_IMAGE_NAME }}:buildcache | |
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.UI_IMAGE_NAME }}:buildcache,mode=max | |
deploy: | |
needs: build_and_push | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Executing remote SSH commands to deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: "${{ env.SSH_HOST }}" | |
username: "${{ env.SSH_USER }}" | |
key: "${{ env.SSH_KEY }}" | |
script: | | |
echo ${{ secrets.GITHUB_TOKEN }} | docker login -u ${{ github.actor }} --password-stdin ${{ env.REGISTRY }} | |
docker pull "${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.API_IMAGE_NAME }}-${{ github.sha }}" | |
docker pull "${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.UI_IMAGE_NAME }}-${{ github.sha }}" | |
docker stop "${{ env.UI_CONTAINER_NAME }}" || true | |
docker stop "${{ env.API_CONTAINER_NAME }}" || true | |
docker rm "${{ env.UI_CONTAINER_NAME }}" || true | |
docker rm "${{ env.API_CONTAINER_NAME }}" || true | |
docker run -d --name "${{ env.API_CONTAINER_NAME }}" -p "${{ env.API_PORT }}" "${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.API_IMAGE_NAME }}-${{ github.sha }}" | |
docker run -d --name "${{ env.UI_CONTAINER_NAME }}" -p "${{ env.UI_PORT }}" "${{ env.REGISTRY }}/${{ env.REPO_NAME}}/${{ env.UI_IMAGE_NAME }}-${{ github.sha }}" |