Merge pull request #264 from LeeTH916/feature/be-elastic-search #55
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: auto deploy | |
on: | |
push: | |
branches: | |
- develop/be | |
jobs: | |
push_to_registry: | |
name: Push to ncp container registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to NCP Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ secrets.NCP_CONTAINER_REGISTRY }} | |
username: ${{ secrets.NCP_ACCESS_KEY }} | |
password: ${{ secrets.NCP_SECRET_KEY }} | |
- name: Create config file | |
run: | | |
echo "export const awsConfig = ${OBJECT_STORAGE_CONFIG}" > ./be/objectStorage.config.ts | |
env: | |
OBJECT_STORAGE_CONFIG: ${{ secrets.OBJECT_STORAGE_CONFIG }} | |
- name: Create TypeORM config | |
run: | | |
mkdir -p ./be/src/configs | |
echo "import { TypeOrmModuleOptions } from '@nestjs/typeorm';" > ./be/src/configs/typeorm.config.ts | |
echo "export const typeORMConfig: TypeOrmModuleOptions = ${TYPEORM_CONFIG}" >> ./be/src/configs/typeorm.config.ts | |
env: | |
TYPEORM_CONFIG: ${{ secrets.TYPEORM_CONFIG }} | |
- name: build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./be | |
file: ./be/Dockerfile | |
push: true | |
tags: ${{ secrets.NCP_CONTAINER_REGISTRY }}/nibobnebob:latest | |
cache-from: type=registry,ref=${{ secrets.NCP_CONTAINER_REGISTRY }}/nibobnebob:latest | |
cache-to: type=inline | |
pull_from_registry: | |
name: Connect server ssh and pull from container registry | |
needs: push_to_registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: connect ssh to Nginx server | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.NGINX_HOST }} | |
username: ${{ secrets.NGINX_USERNAME }} | |
password: ${{ secrets.NGINX_PASSWORD }} | |
port: ${{ secrets.NGINX_PORT }} | |
script: | | |
ssh ${{ secrets.DEV_USERNAME }}@${{ secrets.DEV_HOST }} <<- 'EOSSH' | |
docker pull ${{ secrets.NCP_CONTAINER_REGISTRY }}/nibobnebob | |
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) | |
docker run -d -p 8000:8000 -e API_KEY=${{ secrets.DEV_APIKEY }} -e NODE_ENV="DEV" ${{ secrets.NCP_CONTAINER_REGISTRY }}/nibobnebob | |
docker image prune -f | |
EOSSH |