Fix: CD 설정 파일 수정 #6
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: Build and Deploy SpringBoot to EC2 | |
on: | |
push: | |
branches: [ "main" ] | |
env: | |
PROJECT_NAME: issueTree-project | |
BUCKET_NAME: issuetree-cicd-bucket | |
CODE_DEPLOY_APP_NAME: issueTree_codedeploy | |
DEPLOYMENT_GROUP_NAME: issueTree_instance | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name : add ES_HOST file | |
run : echo "${{ secrets.DEV_ES_HOST }}" > ./src/main/resources/application-ES.properties | |
shell : bash | |
- name : add ES_API_KEY file | |
run : echo "${{ secrets.DEV_ES_API_KEY }}" > ./src/main/resources/application-ES.properties | |
shell : bash | |
- name : add ES_USERNAME file | |
run : echo "${{ secrets.DEV_ES_USERNAME }}" > ./src/main/resources/application-ES.properties | |
shell : bash | |
- name : add ES_PW file | |
run : echo "${{ secrets.DEV_ES_PW }}" > ./src/main/resources/application-ES.properties | |
shell : bash | |
- name : add SLACK file | |
run : echo "$ {{ secrets.DEV_SLACK }}" > ./src/main/resources/application-SLACK.properties | |
shell : bash | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
shell: bash | |
- name: Build and Test | |
run: ./gradlew build test | |
- name: Make Zip File | |
run: zip -qq -r ./$GITHUB_SHA.zip . | |
shell: bash | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_PRIVATE_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name : Copy script | |
run : cp ./scripts/*.sh ./deploy | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://$BUCKET_NAME/$PROJECT_NAME/$GITHUB_SHA.zip | |
- name: Code Deploy To EC2 instance | |
run: aws deploy create-deployment | |
--application-name $CODE_DEPLOY_APP_NAME | |
--deployment-config-name CodeDeployDefault.AllAtOnce | |
--deployment-group-name $DEPLOYMENT_GROUP_NAME | |
--s3-location bucket=$BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip | |
--region ap-northeast-2 |