Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

[Fix] resource 디렉토리 생성 #208

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
submodules: true

- name: Vault에 있는 설정 파일을 프로젝트로 복사
run: cp ./vault/app/* ./app/src/main/resources && cp ./vault/openapi/* ./openapi/src/main/resources && cp ./vault/notification/* ./notification/src/main/resources
run: cp ./vault/app/* ./app/src/main/resources && cp ./vault/openapi/* ./openapi/src/main/resources && mkdir -p ./notification/src/main/resources && cp ./vault/notification/* ./notification/src/main/resources

- name: Set up JDK 21
uses: actions/setup-java@v3
Expand Down
Loading