Merge pull request #328 from ODOICHON/qa #192
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: CD | |
on: | |
push: #ํด๋น ๋ธ๋์น์ push(merge) ํ์ ๋ | |
branches: | |
- main | |
permissions: write-all #ํ ์คํธ ๊ฒฐ๊ณผ ์์ฑ์ ์ํด ์ฐ๊ธฐ๊ถํ ์ถ๊ฐ | |
env: # deploy env | |
S3_BUCKET_NAME: duaily-deploy | |
PROJECT_NAME: duaily-server | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
#jdk ์ธํ | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
#gradle ์บ์ฑ | |
- name: Gradle Caching | |
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: Grant Execute Permission For Gradlew | |
run: chmod +x gradlew | |
#๋ฐฐํฌ๋ฅผ ์ํ secret yml ์ค์ | |
- name: Make application-secret.yml | |
run: | | |
cd ./src/main/resources | |
touch ./application-secret.yml | |
echo "${{ secrets.PROPERTIES_SECRET }}" > ./application-secret.yml | |
shell: bash | |
#๋ก๊ทธ xml ํ์ผ ์ค์ | |
- name: Make logback-spring.xml | |
run: | | |
cd ./src/main/resources | |
touch ./logback-spring.xml | |
echo "${{ secrets.LOGBACK_SPRING }}" > ./logback-spring.xml | |
shell: bash | |
#test๋ฅผ ํฌํจํ ํ๋ก์ ํธ ๋น๋ | |
- name: Build With Gradle | |
run: ./gradlew bootJar | |
- name: Make a zip file | |
run: zip -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: ${{ secrets.AWS_REGION }} | |
- 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 duaily-deploy | |
--deployment-config-name CodeDeployDefault.AllAtOnce | |
--deployment-group-name duaily-deploy-group | |
--s3-location bucket=$S3_BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip |