-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
63 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,3 @@ eslint.config.mjs | |
README.md | ||
.github | ||
|
||
# Build configs | ||
tsconfig.json | ||
tsconfig.build.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: auto deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- feature/51-ncp-deploy | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Push to ncp container registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- 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: build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: ${{ secrets.NCP_CONTAINER_REGISTRY }}/backend:latest | ||
cache-from: type=registry,ref=${{ secrets.NCP_CONTAINER_REGISTRY }}/prv-backend:latest | ||
cache-to: type=inline | ||
secrets: | | ||
GIT_AUTH_TOKEN=${{ secrets.GIT_TOKEN }} | ||
pull_from_registry: | ||
name: Connect server ssh and pull from container registry | ||
needs: push_to_registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: connect ssh | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.DEV_HOST }} | ||
username: ${{ secrets.DEV_USERNAME }} | ||
password: ${{ secrets.DEV_PASSWORD }} | ||
port: ${{ secrets.DEV_PORT }} | ||
script: | | ||
docker pull ${{ secrets.NCP_CONTAINER_REGISTRY }}/backend | ||
docker stop $(docker ps -a -q) | ||
docker rm $(docker ps -a -q) | ||
docker run -d -p 3000:80 \ | ||
-e DB_HOST='${{ secrets.DB_HOST }}' \ | ||
-e DB_PORT='${{ secrets.DB_PORT }}' \ | ||
-e DB_USERNAME='${{ secrets.DB_USERNAME }}' \ | ||
-e DB_PASSWORD='${{ secrets.DB_PASSWORD }}' \ | ||
-e DB_DATABASE='${{ secrets.DB_DATABASE }}' \ | ||
-e JWT_SECRET_KEY='${{ secrets.JWT_SECRET_KEY }}' \ | ||
-e API_BASE_URL='${{ secrets.API_BASE_URL }}' \ | ||
${{ secrets.NCP_CONTAINER_REGISTRY }}/backend | ||
docker image prune -f | ||
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