v1 (#81) #43
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
# This is a basic workflow to help you get started with Actions | |
name: Java CI with Gradle & Deploy to EC2 | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "develop" branch | |
push: | |
branches: [ main ] | |
env: | |
AWS_REGION: ap-northeast-2 | |
S3_BUCKET_NAME: photolab-github-actions-s3-bucket | |
CODE_DEPLOY_APPLICATION_NAME: photolab-codedeploy-app | |
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: photolab-codedeploy-deployment-group | |
RESOURCE_PATH: ./src/main/resources/application.yml | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
# 1) 기본 체크아웃 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# 2) JDK 17 셋팅 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
# 3) gradlew 권한 설정 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
shell: bash | |
# 환경별 yml 파일 생성(1) | |
- name: make application.yml | |
run: | | |
cd ./src/main/resources | |
touch ./application.yml | |
echo "${{ secrets.YML }}" > ./application.yml | |
shell: bash | |
# 환경별 yml 파일 생성(2) - dev | |
- name: make application-dev.yml | |
run: | | |
cd ./src/main/resources | |
touch ./application-dev.yml | |
echo "${{ secrets.YML_DEV }}" > ./application-dev.yml | |
shell: bash | |
# 환경별 yml 파일 생성(3) - oauth | |
- name: make application-oauth.yml | |
run: | | |
cd ./src/main/resources | |
touch ./application-oauth.yml | |
echo "${{ secrets.YML_OAUTH }}" > ./application-oauth.yml | |
shell: bash | |
# 환경별 yml 파일 생성(4) - db | |
- name: make application-db.yml | |
run: | | |
cd ./src/main/resources | |
touch ./application-db.yml | |
echo "${{ secrets.YML_DB }}" > ./application-db.yml | |
shell: bash | |
# 환경별 yml 파일 생성(5) - aws | |
- name: make application-aws.yml | |
run: | | |
cd ./src/main/resources | |
touch ./application-aws.yml | |
echo "${{ secrets.YML_AWS }}" > ./application-aws.yml | |
shell: bash | |
# 4) gradle 빌드 | |
- name: Build with Gradle | |
run: ./gradlew clean build -x test | |
shell: bash | |
# ZIP 파일 생성 | |
- name: Make zip file | |
run: zip -r ./$GITHUB_SHA.zip . | |
shell: bash | |
# AWS 인증 | |
- 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: ${{ env.AWS_REGION }} | |
# AWS S3에 업로드 | |
- name: Upload to AWS S3 | |
run: aws s3 cp --region $AWS_REGION ./$GITHUB_SHA.zip s3://$S3_BUCKET_NAME/$GITHUB_SHA.zip --source . | |
# AWS EC2에 Deploy | |
- name: Deploy to AWS EC2 from S3 | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: | | |
aws deploy create-deployment --application-name ${{ env.CODE_DEPLOY_APPLICATION_NAME }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.CODE_DEPLOY_DEPLOYMENT_GROUP_NAME }} --s3-location bucket=$S3_BUCKET_NAME,key=$GITHUB_SHA.zip,bundleType=zip |