BackEnd - CI/CD - deploy #32
This file contains hidden or 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 workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| # This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
| name: BackEnd - CI/CD - deploy | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| workflow_dispatch: # 수동 실행을 위한 설정 | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| environment: production | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Gradle 캐싱 | |
| 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: Make application.yml | |
| run: | | |
| cd ./src/main | |
| cd ./resources | |
| touch ./application.yml | |
| echo "$APPLICATION" > ./application.yml | |
| env: | |
| APPLICATION: ${{ secrets.APPLICATION }} | |
| shell: bash | |
| - name: Gradle 권한 부여 | |
| run: chmod +x gradlew | |
| - name: Gradle로 빌드 실행 | |
| run: ./gradlew bootjar | |
| - name: zip file 생성 | |
| run: | | |
| mkdir deploy | |
| cp ./docker/docker-compose.blue.yml ./deploy/ | |
| cp ./docker/docker-compose.green.yml ./deploy/ | |
| cp ./appspec.yml ./deploy/ | |
| cp ./docker/Dockerfile ./deploy/ | |
| cp ./scripts/*.sh ./deploy/ | |
| cp ./build/libs/*.jar ./deploy/ | |
| zip -r -qq -j ./spring-build.zip ./deploy | |
| - name: AWS 연결 | |
| uses: aws-actions/configure-aws-credentials@v1 | |
| with: | |
| aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| aws-region: ap-northeast-2 | |
| - name: S3에 프로젝트 업로드 | |
| run: | | |
| aws s3 cp \ | |
| --region ap-northeast-2 \ | |
| ./spring-build.zip s3://backend-podostore | |
| - name: Code Deploy 배포 요청 | |
| run: | | |
| aws deploy create-deployment \ | |
| --application-name deploy \ | |
| --deployment-config-name CodeDeployDefault.OneAtATime \ | |
| --deployment-group-name spring-deploy-group \ | |
| --s3-location bucket=backend-podostore,bundleType=zip,key=spring-build.zip |