-
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.
Merge pull request #155 from teamterning/staging
[ 🎉 deploy] 터닝 APP 릴리즈를 위한 API 최종 배포 v1.0.0
- Loading branch information
Showing
66 changed files
with
830 additions
and
464 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: DEV-CI | ||
|
||
on: | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
env: | ||
working-directory: . | ||
|
||
# Checkout - 가상 머신에 체크아웃 | ||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
# JDK setting - JDK 21 설정 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '21' | ||
|
||
# Gradle caching - 빌드 시간 향상 | ||
- 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- | ||
# Gradle build - 테스트 없이 gradle 빌드 | ||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
working-directory: ${{ env.working-directory }} | ||
shell: bash |
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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# 스테이징용 DOCKER-CD-staging.yml | ||
name: DOCKER-CD-STAGING | ||
|
||
on: | ||
push: | ||
branches: [ "staging" ] | ||
branches: [ "staging" ] | ||
|
||
jobs: | ||
ci: | ||
# Using Envioronment - Staging 환경 사용 | ||
environment: staging | ||
# Using Environment - Staging 환경 사용 | ||
# environment: staging.. | ||
runs-on: ubuntu-24.04 | ||
env: | ||
working-directory: . | ||
|
||
# Checkout - 가상 머신에 체크아웃 | ||
# Checkout - 가상 머신에 체크아웃 | ||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
# JDK setting - JDK 21 설정 | ||
# JDK setting - JDK 21 설정 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '21' | ||
# gradle caching - 빌드 시간 향상 | ||
|
||
# Gradle caching - 빌드 시간 향상 | ||
- name: Gradle Caching | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -34,8 +34,8 @@ jobs: | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# create .yml - yml 파일 생성 | ||
# create .yml - yml 파일 생성 | ||
- name: application.yml 생성 | ||
run: | | ||
mkdir -p ./src/main/resources && cd $_ | ||
|
@@ -50,16 +50,15 @@ jobs: | |
touch ./application-staging.yml | ||
echo "${{ secrets.YML_STAGING }}" > ./application-staging.yml | ||
working-directory: ${{ env.working-directory }} | ||
# gradle build - 테스트 없이 gradle 빌드 | ||
|
||
# Gradle build - 테스트 없이 gradle 빌드 | ||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
working-directory: ${{ env.working-directory }} | ||
shell: bash | ||
|
||
|
||
- name: docker 로그인 | ||
uses: docker/[email protected] | ||
|
||
|
@@ -80,6 +79,9 @@ jobs: | |
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- name: Debugging - Echo Host | ||
run: echo "${{ secrets.STAGING_SERVER_IP }}" | ||
|
||
- name: docker 컨테이너 실행 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
|
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 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 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 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 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 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 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 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
Oops, something went wrong.