-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/#39
- Loading branch information
Showing
3 changed files
with
232 additions
and
115 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,48 @@ | ||
name: Java CD with Gradle | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
cd: | ||
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' | ||
|
||
# DockerHub Login (2) | ||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
# AWS EC2 Server Connect & Docker command execution | ||
- name: Deploy | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} # EC2 instance public DNS | ||
username: ec2-user | ||
key: ${{ secrets.PRIVATE_KEY }} # pem key | ||
script: | | ||
sudo docker stop sponus-docker | ||
sudo docker rm sponus-docker | ||
sudo docker rmi ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
sudo docker stop my-redis | ||
sudo docker rm my-redis | ||
sudo docker rmi redis | ||
sudo docker pull redis | ||
sudo docker network create my-network | ||
sudo docker run --name my-redis --network my-network -d redis | ||
sudo docker run -e SPRING_PROFILES_ACTIVE=prod -it -d -p 8080:8080 --name sponus-docker -e TZ=Asia/Seoul --network my-network ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
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,69 @@ | ||
name: Java CI with Gradle | ||
|
||
on: | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
ci: | ||
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' | ||
|
||
- name: 2) Convert to prod config | ||
run: | | ||
cd ./src/main/resources | ||
[ -e "application.yml" ] && rm application.yml | ||
echo "spring:" > application.yml | ||
echo " profiles:" >> application.yml | ||
echo " active: prod" >> application.yml | ||
- name: 3) Set prod.yml | ||
uses: microsoft/variable-substitution@v1 | ||
with: | ||
files: ./src/main/resources/application-prod.yml | ||
env: | ||
spring.datasource.url: ${{ secrets.DB_URL }} | ||
spring.datasource.username: ${{ secrets.DB_USERNAME }} | ||
spring.datasource.password: ${{ secrets.DB_PW }} | ||
spring.jwt.secret: ${{ secrets.JWT_SECRET }} | ||
spring.jwt.token.access-expiration-time: ${{ secrets.JWT_ACCESS_EXPIRATION_TIME }} | ||
spring.jwt.token.refresh-expiration-time: ${{ secrets.JWT_REFRESH_EXPIRATION_TIME }} | ||
spring.data.redis.host: ${{ secrets.REDIS_HOST }} | ||
spring.data.redis.port: ${{ secrets.REDIS_PORT }} | ||
cloud.aws.s3.bucket: ${{ secrets.BUCKET }} | ||
cloud.aws.region.static: ${{ secrets.REGION }} | ||
cloud.aws.credentials.accessKey: ${{ secrets.S3_ACCESS_KEY }} | ||
cloud.aws.credentials.secretKey: ${{ secrets.S3_SECRET_KEY }} | ||
|
||
- name: 3) Set prod.yml - Debug | ||
run: | | ||
cat ./src/main/resources/application-prod.yml | ||
- name: Grant execute permission for gradlew and build | ||
run: | | ||
chmod +x ./gradlew | ||
./gradlew clean | ||
./gradlew build -x test | ||
# Docker image Build (1) | ||
- name: Docker image build | ||
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/sponus-docker --pull --no-cache --platform linux/amd64 . | ||
|
||
# DockerHub Login (2) | ||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
# Docker Hub push (3) | ||
- name: Docker Hub push | ||
run: docker push ${{ secrets.DOCKER_USERNAME }}/sponus-docker |
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,115 +1,115 @@ | ||
name: Java CI/CD with Gradle | ||
|
||
on: | ||
pull_request: | ||
branches: [ "develop" ] | ||
push: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
ci: | ||
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' | ||
|
||
- name: 2) Convert to prod config | ||
run: | | ||
cd ./src/main/resources | ||
[ -e "application.yml" ] && rm application.yml | ||
echo "spring:" > application.yml | ||
echo " profiles:" >> application.yml | ||
echo " active: prod" >> application.yml | ||
- name: 3) Set prod.yml | ||
uses: microsoft/variable-substitution@v1 | ||
with: | ||
files: ./src/main/resources/application-prod.yml | ||
env: | ||
spring.datasource.url: ${{ secrets.DB_URL }} | ||
spring.datasource.username: ${{ secrets.DB_USERNAME }} | ||
spring.datasource.password: ${{ secrets.DB_PW }} | ||
spring.jwt.secret: ${{ secrets.JWT_SECRET }} | ||
spring.jwt.token.access-expiration-time: ${{ secrets.JWT_ACCESS_EXPIRATION_TIME }} | ||
spring.jwt.token.refresh-expiration-time: ${{ secrets.JWT_REFRESH_EXPIRATION_TIME }} | ||
spring.data.redis.host: ${{ secrets.REDIS_HOST }} | ||
spring.data.redis.port: ${{ secrets.REDIS_PORT }} | ||
cloud.aws.s3.bucket: ${{ secrets.BUCKET }} | ||
cloud.aws.region.static: ${{ secrets.REGION }} | ||
cloud.aws.credentials.accessKey: ${{ secrets.S3_ACCESS_KEY }} | ||
cloud.aws.credentials.secretKey: ${{ secrets.S3_SECRET_KEY }} | ||
|
||
- name: 3) Set prod.yml - Debug | ||
run: | | ||
cat ./src/main/resources/application-prod.yml | ||
- name: Grant execute permission for gradlew and build | ||
run: | | ||
chmod +x ./gradlew | ||
./gradlew clean | ||
./gradlew build -x test | ||
# Docker image Build (1) | ||
- name: Docker image build | ||
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/sponus-docker --pull --no-cache --platform linux/amd64 . | ||
|
||
# DockerHub Login (2) | ||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
# Docker Hub push (3) | ||
- name: Docker Hub push | ||
run: docker push ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
|
||
cd: | ||
runs-on: ubuntu-latest | ||
needs: ci | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
# DockerHub Login (2) | ||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
# AWS EC2 Server Connect & Docker command execution | ||
- name: Deploy | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} # EC2 instance public DNS | ||
username: ec2-user | ||
key: ${{ secrets.PRIVATE_KEY }} # pem key | ||
script: | | ||
sudo docker stop sponus-docker | ||
sudo docker rm sponus-docker | ||
sudo docker rmi ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
sudo docker stop my-redis | ||
sudo docker rm my-redis | ||
sudo docker rmi redis | ||
sudo docker pull redis | ||
sudo docker network create my-network | ||
sudo docker run --name my-redis --network my-network -d redis | ||
sudo docker run -e SPRING_PROFILES_ACTIVE=prod -it -d -p 8080:8080 --name sponus-docker -e TZ=Asia/Seoul --network my-network ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
#name: Java CI/CD with Gradle | ||
# | ||
#on: | ||
# pull_request: | ||
# branches: [ "develop" ] | ||
# push: | ||
# branches: [ "develop" ] | ||
# | ||
#jobs: | ||
# ci: | ||
# 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' | ||
# | ||
# - name: 2) Convert to prod config | ||
# run: | | ||
# cd ./src/main/resources | ||
# [ -e "application.yml" ] && rm application.yml | ||
# echo "spring:" > application.yml | ||
# echo " profiles:" >> application.yml | ||
# echo " active: prod" >> application.yml | ||
# | ||
# - name: 3) Set prod.yml | ||
# uses: microsoft/variable-substitution@v1 | ||
# with: | ||
# files: ./src/main/resources/application-prod.yml | ||
# env: | ||
# spring.datasource.url: ${{ secrets.DB_URL }} | ||
# spring.datasource.username: ${{ secrets.DB_USERNAME }} | ||
# spring.datasource.password: ${{ secrets.DB_PW }} | ||
# spring.jwt.secret: ${{ secrets.JWT_SECRET }} | ||
# spring.jwt.token.access-expiration-time: ${{ secrets.JWT_ACCESS_EXPIRATION_TIME }} | ||
# spring.jwt.token.refresh-expiration-time: ${{ secrets.JWT_REFRESH_EXPIRATION_TIME }} | ||
# spring.data.redis.host: ${{ secrets.REDIS_HOST }} | ||
# spring.data.redis.port: ${{ secrets.REDIS_PORT }} | ||
# cloud.aws.s3.bucket: ${{ secrets.BUCKET }} | ||
# cloud.aws.region.static: ${{ secrets.REGION }} | ||
# cloud.aws.credentials.accessKey: ${{ secrets.S3_ACCESS_KEY }} | ||
# cloud.aws.credentials.secretKey: ${{ secrets.S3_SECRET_KEY }} | ||
# | ||
# - name: 3) Set prod.yml - Debug | ||
# run: | | ||
# cat ./src/main/resources/application-prod.yml | ||
# | ||
# - name: Grant execute permission for gradlew and build | ||
# run: | | ||
# chmod +x ./gradlew | ||
# ./gradlew clean | ||
# ./gradlew build -x test | ||
# | ||
# # Docker image Build (1) | ||
# - name: Docker image build | ||
# run: docker build -t ${{ secrets.DOCKER_USERNAME }}/sponus-docker --pull --no-cache --platform linux/amd64 . | ||
# | ||
# # DockerHub Login (2) | ||
# - name: Docker login | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# username: ${{ secrets.DOCKER_USERNAME }} | ||
# password: ${{ secrets.DOCKER_PASSWORD }} | ||
# | ||
# # Docker Hub push (3) | ||
# - name: Docker Hub push | ||
# run: docker push ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
# | ||
# cd: | ||
# runs-on: ubuntu-latest | ||
# needs: ci | ||
# | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
# | ||
# - name: Set up JDK 17 | ||
# uses: actions/setup-java@v3 | ||
# with: | ||
# java-version: '17' | ||
# distribution: 'temurin' | ||
# | ||
# # DockerHub Login (2) | ||
# - name: Docker login | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# username: ${{ secrets.DOCKER_USERNAME }} | ||
# password: ${{ secrets.DOCKER_PASSWORD }} | ||
# | ||
# # AWS EC2 Server Connect & Docker command execution | ||
# - name: Deploy | ||
# uses: appleboy/ssh-action@master | ||
# with: | ||
# host: ${{ secrets.HOST }} # EC2 instance public DNS | ||
# username: ec2-user | ||
# key: ${{ secrets.PRIVATE_KEY }} # pem key | ||
# script: | | ||
# sudo docker stop sponus-docker | ||
# sudo docker rm sponus-docker | ||
# sudo docker rmi ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
# sudo docker pull ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
# | ||
# sudo docker stop my-redis | ||
# sudo docker rm my-redis | ||
# sudo docker rmi redis | ||
# | ||
# sudo docker pull redis | ||
# sudo docker network create my-network | ||
# sudo docker run --name my-redis --network my-network -d redis | ||
# sudo docker run -e SPRING_PROFILES_ACTIVE=prod -it -d -p 8080:8080 --name sponus-docker -e TZ=Asia/Seoul --network my-network ${{ secrets.DOCKER_USERNAME }}/sponus-docker | ||
# |