Skip to content

Commit

Permalink
Update cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jun02160 authored Jun 24, 2023
1 parent 97b53e3 commit d5adbff
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
distribution: 'temurin'

# 3) 환경변수 파일 생성
- name: make application.properties 파일 생성
- name: make application.yml 파일 생성
run: |
## create application.yml
mkdir ./src/main/resources
cd ./src/main/resources
mkdir ./WEEK4/FourthSeminar/src/main/resources
cd ./WEEK4/FourthSeminar/src/main/resources
# application.yml 파일 생성
# application.yml 파일 생성 (touch: 빈 파일 생성하는 리눅스 명령어)
touch ./application.yml
# GitHub-Actions 에서 설정한 값을 application.yml 파일에 쓰기
Expand All @@ -48,10 +48,14 @@ jobs:

# 이 워크플로우는 gradle build
- name: Grant execute permission for gradlew
run: chmod +x gradlew
run: |
cd ./WEEK4/FourthSeminar
chmod +x gradlew
- name: Build with Gradle # 실제 application build(-x 옵션을 통해 test는 제외)
run: ./gradlew build -x test
run: |
cd ./WEEK4/FourthSeminar
./gradlew build -x test
## GitHub에서 제공하는 환경에 맞게 구성
# 디렉토리 생성
Expand Down

0 comments on commit d5adbff

Please sign in to comment.