From 962348d0c4402dde63c271113f8a8999be9fbccf Mon Sep 17 00:00:00 2001 From: 0tae Date: Mon, 27 Jan 2025 21:38:38 +0900 Subject: [PATCH] =?UTF-8?q?chore(CD)=20:=20DOCKER-CD-STAGING.yml=20?= =?UTF-8?q?=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/DOCKER-CD-STAGING.yml | 87 +++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 .github/workflows/DOCKER-CD-STAGING.yml diff --git a/.github/workflows/DOCKER-CD-STAGING.yml b/.github/workflows/DOCKER-CD-STAGING.yml new file mode 100644 index 00000000..c0d98624 --- /dev/null +++ b/.github/workflows/DOCKER-CD-STAGING.yml @@ -0,0 +1,87 @@ +name: DOCKER-CD-STAGING +on: + push: + branches: [ "main" ] + +jobs: + ci: + # Using Environment - prod 환경 사용 + # environment: prod + runs-on: ubuntu-24.04 + env: + working-directory: . + + # Checkout - 가상 머신에 체크아웃 + steps: + - name: 체크아웃 + uses: actions/checkout@v3 + + # JDK setting - Amazon Corretto JDK 21 설정 + - name: Set up Amazon Corretto JDK 21 + uses: actions/setup-java@v3 + with: + distribution: 'corretto' + java-version: '21' + + # Gradle caching - 빌드 시간 향상 + - name: Gradle Caching + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + + - name: application.yml 생성 + run: | + mkdir -p ./src/main/resources && cd $_ + touch ./application.yml + echo "${{ secrets.YML }}" > ./application.yml + cat ./application.yml + working-directory: ${{ env.working-directory }} + + - name: application-staging.yml 생성 + run: | + cd ./src/main/resources + touch ./application-staging.yml + echo "${{ secrets.PROD_YML }}" > ./application-staging.yml + working-directory: ${{ env.working-directory }} + + - name: 빌드 + run: | + chmod +x gradlew + ./gradlew build -x test + working-directory: ${{ env.working-directory }} + shell: bash + + - name: docker 로그인 + uses: docker/setup-buildx-action@v2.9.1 + + - name: login docker hub + uses: docker/login-action@v2.2.0 + with: + username: ${{ secrets.STAGING_DOCKER_LOGIN_USERNAME }} + password: ${{ secrets.STAGING_DOCKER_LOGIN_ACCESSTOKEN }} + + - name: docker image 빌드 및 푸시 + run: | + docker build -f Dockerfile-staging --platform linux/amd64 -t noostak/server . + docker push noostak/server + working-directory: ${{ env.working-directory }} + + cd: + needs: ci + runs-on: ubuntu-24.04 + + steps: + - name: docker 컨테이너 실행 + uses: appleboy/ssh-action@master + with: + host: ${{ secrets.STAGING_SERVER_IP }} + username: ${{ secrets.STAGING_SERVER_USER }} + key: ${{ secrets.STAGING_SERVER_KEY }} + script: | + cd ~ + ./deploy-staging.sh