-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⚙️ chore : alpha서버 배포와 production을 위한 CI/CD분리
- Loading branch information
Showing
6 changed files
with
167 additions
and
21 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
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,119 @@ | ||
name: deploy | ||
|
||
on: | ||
push: | ||
branches: [alpha] | ||
pull_request: | ||
branches: [alpha] | ||
|
||
env: | ||
DOCKER_IMAGE: ${{ vars.DOCKERHUB_USERNAME }}/juga-docker | ||
DOCKER_TAG: ${{ github.sha }} | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
app: | ||
[ | ||
{ name: 'be', dir: 'BE', port: 3000, container: 'juga-docker-be' }, | ||
{ name: 'fe', dir: 'FE', port: 5173, container: 'juga-docker-fe' }, | ||
] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
cache: 'npm' | ||
cache-dependency-path: ./${{matrix.app.dir}}/package-lock.json | ||
|
||
- name: Create .env file | ||
run: | | ||
touch ./${{ matrix.app.dir }}/.env | ||
echo "${{ secrets.ENV }}" > ./${{matrix.app.dir}}/.env | ||
- name: Install dependencies | ||
working-directory: ./${{matrix.app.dir}} | ||
run: npm ci | ||
|
||
- name: Run tests | ||
working-directory: ./${{matrix.app.dir}} | ||
run: npm test | ||
env: | ||
CI: true | ||
|
||
- name: Run linter | ||
working-directory: ./${{matrix.app.dir}} | ||
run: npm run lint | ||
|
||
- name: Build application | ||
working-directory: ./${{matrix.app.dir}} | ||
run: npm run build | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ vars.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and Push Docker Image | ||
working-directory: ./${{ matrix.app.dir }} | ||
env: | ||
NCP_ACCESS_KEY: ${{ secrets.NCP_ACCESS_KEY }} | ||
NCP_SECRET_KEY: ${{ secrets.NCP_SECRET_KEY }} | ||
run: | | ||
docker build -t ${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:${{ env.DOCKER_TAG }} . | ||
docker tag ${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:${{ env.DOCKER_TAG }} ${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:latest | ||
docker push ${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:${{ env.DOCKER_TAG }} | ||
docker push ${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:latest | ||
- name: Get Github Actions IP | ||
id: ip | ||
uses: haythem/[email protected] | ||
|
||
- name: Setting NCP CLI & Credentials | ||
run: | | ||
cd ~ | ||
wget https://www.ncloud.com/api/support/download/5/65 | ||
unzip 65 | ||
mkdir ~/.ncloud | ||
echo -e "[DEFAULT]\nncloud_access_key_id = ${{ secrets.NCP_ACCESS_KEY }}\nncloud_secret_access_key = ${{ secrets.NCP_SECRET_KEY }}\nncloud_api_url = ${{ secrets.NCP_API_URI }}" >> ~/.ncloud/configure | ||
- name: Add Github Action Ip to Security group | ||
run: | | ||
cd ~ | ||
ls -la | ||
chmod -R 777 ~/cli_linux | ||
cd ~/cli_linux | ||
./ncloud vserver addAccessControlGroupInboundRule --regionCode KR --vpcNo ${{ secrets.NCP_VPC_ID }} --accessControlGroupNo ${{ secrets.NCP_ACG_ID }} --accessControlGroupRuleList "protocolTypeCode='TCP', ipBlock='${{ steps.ip.outputs.ipv4 }}/32', portRange='${{ secrets.SSH_PORT }}'" | ||
- name: Deploy to NCP Server | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.NCP_ALPHA_SERVER_HOST }} | ||
username: ${{ secrets.NCP_ALPHA_SERVER_USERNAME }} | ||
key: ${{ secrets.NCP_ALPHA_SERVER_SSH_KEY }} | ||
port: 22 | ||
script: | | ||
docker system prune -af | ||
echo "${{ secrets.ENV }}" > .env | ||
docker pull ${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:${{ env.DOCKER_TAG }} | ||
docker stop ${{ matrix.app.container }} || true | ||
docker rm ${{ matrix.app.container }} || true | ||
docker run -d \ | ||
--name ${{ matrix.app.container }} \ | ||
-p ${{ matrix.app.port }}:${{ matrix.app.port }} \ | ||
--env-file .env \ | ||
${{ env.DOCKER_IMAGE }}-${{ matrix.app.name }}:${{ env.DOCKER_TAG }} | ||
- name: Remove Github Action Ip to Security group | ||
run: | | ||
chmod -R 777 ~/cli_linux | ||
cd ~/cli_linux | ||
./ncloud vserver removeAccessControlGroupInboundRule --regionCode KR --vpcNo ${{ secrets.NCP_VPC_ID }} --accessControlGroupNo ${{ secrets.NCP_ACG_ID }} --accessControlGroupRuleList "protocolTypeCode='TCP', ipBlock='${{ steps.ip.outputs.ipv4 }}/32', portRange='${{ secrets.SSH_PORT }}'" |
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,17 @@ | ||
FROM node:20 | ||
|
||
RUN mkdir -p /var/app | ||
WORKDIR /var/app | ||
|
||
COPY package*.json ./ | ||
RUN npm install | ||
|
||
COPY . . | ||
|
||
RUN npm run build | ||
|
||
RUN npm install -g serve | ||
|
||
EXPOSE 5173 | ||
|
||
CMD ["serve", "-s", "dist", "-l", "5173"] |
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 @@ | ||
{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/components/header.tsx","./src/page/home.tsx"],"version":"5.6.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"root":["./vite.config.ts"],"version":"5.6.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