fix: static 파일 수정 #82
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 workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
name: Spring Boot & Gradle CI/CD | |
# back-end 브랜치에 push 또는 pull request가 되면 스크립트 실행 | |
on: | |
push: | |
branches: [ 'back-end' ] | |
# 해당 코드에서 사용될 변수 설정 | |
env: | |
AWS_REGION: ap-northeast-2 | |
PROJECT_NAME: ssalon | |
S3_BUCKET_NAME: ssalon-github-actions-s3-bucket | |
CODE_DEPLOY_APP_NAME: ssalon | |
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: ssalon-codedeploy-deployment-group | |
permissions: | |
contents: read | |
jobs: | |
build: | |
# Github의 워크플로에서 실행될 OS 선택 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# create application.yml | |
- name: make application-aws.yml | |
if: contains(github.ref, 'back-end') | |
run: | | |
# spring의 resources 경로로 이동 | |
cd ./back-end/src/main/resources | |
ls -al | |
touch ./application.yml | |
# GitHub-Actions에서 설정한 값을 application-aws.yml 파일에 쓰기 | |
echo "copy properties" | |
echo "${{ secrets.AWS_PROPERTIES }}" > ./application.yml | |
shell: bash | |
# gradlew 파일 실행권한 설정 | |
- name: Grant execute permission for gradlew | |
run: | | |
cd ./back-end | |
ls -al | |
chmod +x ./gradlew | |
shell: bash | |
# Gradle build (Test 제외) | |
- name: Build with Gradle | |
run: | | |
cd ./back-end | |
ls -al | |
./gradlew clean --stacktrace --info build -x test | |
shell: bash | |
# AWS 인증 (IAM 사용자 Access Key, Secret Key 활용) | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ env.AWS_REGION }} | |
# 빌드 결과물을 S3 버킷에 업로드 | |
- name: Upload to AWS S3 | |
run: | | |
cd ./back-end | |
aws deploy push \ | |
--application-name ${{ env.CODE_DEPLOY_APP_NAME }} \ | |
--ignore-hidden-files \ | |
--s3-location s3://$S3_BUCKET_NAME/$GITHUB_SHA.zip \ | |
--source . | |
# S3 버킷에 있는 파일을 대상으로 CodeDeploy 실행 | |
- name: Deploy to AWS EC2 from S3 | |
run: | | |
cd ./back-end | |
aws deploy create-deployment \ | |
--application-name ${{ env.CODE_DEPLOY_APP_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 |