Child 도메인 리팩토링 #203
Workflow file for this run
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: develop branch Build to EC2 | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
workflow_dispatch: | |
env: | |
BUCKET_NAME: team09-cicd-bucket | |
PROJECT_NAME: studay | |
DEPLOYMENT_GROUP_NAME: studay_cicd | |
CODE_DEPLOY_APP_NAME: studay_cicd | |
jobs: | |
# 작업의 이름 | |
build_and_test: | |
# GitHub Actions 러너의 운영 체제 | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:8.0.35 | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: test | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10 | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: --entrypoint redis-server | |
# 순차적으로 실행될 단계들을 정의하는 섹션 | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Create application.yml | |
run: | | |
mkdir -p src/main/resources | |
echo "${{ secrets.APPLICATION_YML_CONTENT }}" > src/main/resources/application.yml | |
echo "${{ secrets.APPLICATION_PROD_YML_CONTENT }}" > src/main/resources/application-prod.yml | |
echo "${{ secrets.APPLICATION_DEV_YML_CONTENT }}" > src/main/resources/application-dev.yml | |
echo "${{ secrets.APPLICATION_AUTH_YML_CONTENT }}" > src/main/resources/application-auth.yml | |
echo "${{ secrets.APPLICATION_S3_YML_CONTENT }}" > src/main/resources/application-s3.yml | |
echo "${{ secrets.APPLICATION_SWAGGER_YML_CONTENT }}" > src/main/resources/application-swagger.yml | |
- name: Clean with gradle | |
run: ./gradlew clean | |
- name: Build with gradle | |
run: ./gradlew build | |
- name: Upload Test Report | |
if: failure() # 이 단계는 테스트 실패시에만 실행됩니다. | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-report | |
path: build/reports/tests/test | |
- name: Openapi3 Documentation | |
run: ./gradlew openapi3 |