Skip to content

Commit

Permalink
Merge branch 'develop' into CITEST1
Browse files Browse the repository at this point in the history
  • Loading branch information
paragon0107 authored Jun 24, 2024
2 parents 909e59f + 8d9b5c8 commit ac915e5
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,19 @@ jobs:
distribution: 'corretto'
java-version: '17'

- name: create application.yml
run: |
# create application.yml
# mkdir ./src/main/resources
- name: create application-secret.yml
run:
# create application-secret.yml
cd ./src/main/resources

# application.yml 파일 생성
# touch ./application.yml
# application-secret.yml 파일 생성
touch ./application-secret.yml

# GitHub-Actions 에서 설정한 값을 application.yml 파일에 쓰기
# echo "${{ secrets.CI_APPLICATION }}" >> ./application.yml
# GitHub-Actions 에서 설정한 값을 application-secret.yml 파일에 쓰기
# echo "${{ secrets.CI_APPLICATION }}" >> ./application-secret.yml

# application.yml 파일 확인
cat ./application.yml
cat ./application-secret.yml
shell: bash

- name: build
Expand Down

0 comments on commit ac915e5

Please sign in to comment.