-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
47 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,82 +17,82 @@ permissions: | |
contents: read | ||
|
||
jobs: | ||
deploy: | ||
name: deploy | ||
test: | ||
runs-on: ubuntu-latest | ||
environment: production | ||
|
||
steps: | ||
# 1) 기본 체크아웃 | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@v3 | ||
|
||
# 2) JDK 17 셋팅 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
# 2.5) secret설정한 yml 등록 | ||
- name: Set YML | ||
run: | | ||
mkdir -p src/main/resources | ||
echo "${{ secrets.YML }}" | base64 --decode > src/main/resources/application.yml | ||
find src | ||
|
||
# 2.5) secret설정한 test yml 등록 | ||
- name: Set Test YML | ||
run: | | ||
mkdir -p src/main/resources | ||
echo "${{ secrets.TEST_YML }}" | base64 --decode > src/main/resources/application-test.yml | ||
find src | ||
# - name: Set up MariaDB 10 | ||
# uses: getong/[email protected] | ||
# with: | ||
# host port: 3306 | ||
# container port: 3306 | ||
# mysql database: 'nanaland_test' | ||
# mysql user: 'root' | ||
# mysql password: ${{ secrets.DATABASE_KEY }} | ||
# # mysql root password: ${{ secrets.RootPassword }} # Required if "mysql user" is empty, default is empty. The root superuser password | ||
|
||
# 3) gradlew 권한 설정 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Test with Gradle | ||
run: SPRING_PROFILES_ACTIVE=[test] ./gradlew test -i | ||
|
||
build: | ||
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: 'temurin' | ||
|
||
# 2.5) secret설정한 yml 등록 | ||
- name: Set YML | ||
run: | | ||
mkdir -p src/main/resources | ||
echo "${{ secrets.YML }}" | base64 --decode > src/main/resources/application.yml | ||
find src | ||
# # 4) gradle 테스트 빌드 | ||
# - name: Build Test with Gradle | ||
# run: ./gradlew test -i | ||
# # run: ./gradlew clean build -i | ||
# # working-directory: ${{ env.working-directory }} | ||
|
||
# 3) gradlew 권한 설정 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
# 4) gradle 빌드 | ||
- name: Build with Gradle | ||
# run: ./gradlew clean build -x test -i | ||
run: ./gradlew clean build -i | ||
# working-directory: ${{ env.working-directory }} | ||
|
||
# AWS 인증 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ env.AWS_REGION }} | ||
run: ./gradlew clean build -x test -i | ||
|
||
# AWS S3에 업로드 | ||
- name: Upload to AWS S3 | ||
run: | | ||
aws deploy push \ | ||
--application-name ${{ env.CODE_DEPLOY_APPLICATION_NAME }} \ | ||
--ignore-hidden-files \ | ||
--s3-location s3://$S3_BUCKET_NAME/$GITHUB_SHA.zip \ | ||
--source . | ||
# AWS EC2에 Deploy | ||
- name: Deploy to AWS EC2 from S3 | ||
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 | ||
deploy: | ||
needs: [ test,build ] | ||
runs-on: ubuntu-latest | ||
environment: production | ||
|
||
steps: | ||
# 1) 기본 체크아웃 | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: result | ||
run: echo "SUCCESS" |