Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
111coding committed Nov 30, 2023
1 parent c07cb0f commit e460aab
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .ebextensions/00-makeFiles.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
files:
"/sbin/appstart":
mode: "000755"
owner: webapp
group: webapp
content: |
#!/usr/bin/env bash
JAR_PATH=/var/app/current/application.jar

# run app
java -Dspring.profiles.active=prod -Dfile.encoding=UTF-8 -jar $JAR_PATH
53 changes: 53 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: blog cicd
on:
push:
branches:
- main

# https://github.com/actions/setup-java
# actions/setup-java@v2는 사용자 정의 배포를 지원하고 Zulu OpenJDK, Eclipse Temurin 및 Adopt OpenJDK를 기본적으로 지원합니다. v1은 Zulu OpenJDK만 지원합니다.
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: zulu
- name: Pemission
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew clean build

# UTC가 기준이기 때문에 한국시간으로 맞추려면 +9시간 해야 한다
- name: Get current time
uses: 1466587594/get-current-time@v2
id: current-time
with:
format: YYYY-MM-DDTHH-mm-ss
utcOffset: "+09:00"

- name: Show Current Time
run: echo "CurrentTime=${{steps.current-time.outputs.formattedTime}}"

# EB에 CD 하기 위해 추가 작성
- name: Generate deployment package
run: |
mkdir deploy
cp build/libs/*.jar deploy/application.jar
cp Procfile deploy/Procfile
cp -r .ebextensions deploy/.ebextensions
cd deploy && zip -r deploy.zip .
- name: Deploy to EB
uses: einaregilsson/beanstalk-deploy@v21
with:
aws_access_key: ${{ secrets.AWS_ACCESS_KEY }}
aws_secret_key: ${{ secrets.AWS_SECRET_KEY }}
application_name: blog-eb-test # 엘리스틱 빈스톡 애플리케이션 이름!
environment_name: Blog-eb-test-env # 엘리스틱 빈스톡 환경 이름!
version_label: blog-${{steps.current-time.outputs.formattedTime}}
region: ap-northeast-2
deployment_package: deploy/deploy.zip
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
springapp: appstart
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ server:
encoding:
charset: utf-8
force: true
port: 8080
port: 5000

spring:
# 2
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ server:
encoding:
charset: utf-8
force: true
port: 8080
port: 5000

spring:
mustache:
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ server:
encoding:
charset: utf-8
force: true
port: 8080
port: 5000

spring:
mustache:
Expand Down

0 comments on commit e460aab

Please sign in to comment.