[BE] 운영 서버 Elasticsearch IP 변경 #272
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: backend deployment | |
on: | |
push: | |
branches: [main] | |
paths: ["backend/**"] | |
defaults: | |
run: | |
working-directory: backend | |
env: | |
S3_BUCKET_NAME: bootme-cicd-springboot | |
PROJECT_NAME: cicd_springboot | |
CODE_DEPLOY_APP_NAME: bootme_codeDeploy_springBoot | |
DEPLOYMENT_GROUP_NAME: bootme_deployGroup_springBoot | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set timezone | |
run: sudo ln -snf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && echo Asia/Seoul | sudo tee /etc/timezone | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Replace Jasypt Password in main application.yml | |
run: sed -i "s/encryptKey/${{ secrets.JASYPT_PASSWORD }}/g" ./src/main/resources/application.yml | |
- name: Replace Jasypt Password in test application.yml | |
run: sed -i "s/encryptKey/${{ secrets.JASYPT_PASSWORD }}/g" ./src/test/resources/application.yml | |
- name: Build with Gradle | |
run: ./gradlew bootJar | |
- 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_SECRET_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://$S3_BUCKET_NAME/$PROJECT_NAME/$GITHUB_SHA.zip | |
- name: Code Deploy | |
run: aws deploy create-deployment --application-name $CODE_DEPLOY_APP_NAME --deployment-config-name CodeDeployDefault.OneAtATime --deployment-group-name $DEPLOYMENT_GROUP_NAME --s3-location bucket=$S3_BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip |