Fix: 예시 테스트 데이터 수정 #35
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 Spring Boot to AWS EC2 | |
on: | |
push: | |
branches: ["develop"] | |
env: | |
PROJECT_NAME: unibond | |
BUCKET_NAME: unibond-cicd-bucket | |
CODE_DEPLOY_APP_NAME: unibond-cicd-codedeploy | |
DEPLOYMENT_GROUP_NAME: unibond-instance | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: "corretto" | |
- name: add db connection settings | |
run: echo "${{ secrets.MYSQL_SETTING }}" > /home/runner/work/UniBond-server/UniBond-server/unibond/src/main/resources/application-MYSQL.properties | |
shell: bash | |
- name: add S3 connection settings | |
run: echo "${{ secrets.S3_SETTING }}" > /home/runner/work/UniBond-server/UniBond-server/unibond/src/main/resources/application-S3.properties | |
shell: bash | |
- name: Permission for gradlew | |
run: chmod +x ./unibond/gradlew | |
shell: bash | |
- name: Build with Gradle | |
# run: /home/runner/work/UniBond-server/UniBond-server/unibond/gradlew build | |
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 | |
with: | |
arguments: build | |
build-root-directory: /home/runner/work/UniBond-server/UniBond-server/unibond | |
- name: build check | |
run: ls -al /home/runner/work/UniBond-server/UniBond-server/unibond/build/libs | |
shell: bash | |
- 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: 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 |