File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,13 @@ jobs:
38
38
env :
39
39
GOOGLE_API_KEY : ${{ secrets.GOOGLE_API_KEY }}
40
40
OCCUPY_SECRET_TEST_DIR : ./src/test/resources # 레포지토리 내 빈 env.yml의 위치 (test)
41
- OCCUPY_SECRET_DIR_FILE_NAME : env.yml # 파일 이름
41
+ OCCUPY_SECRET_DIR : ./src/main/resources # 레포지토리 내 빈 env.yml의 위치 (main)
42
+ OCCUPY_SECRET_DIR_FILE_NAME : env.yml # 파일 이름
42
43
43
44
# base64 디코딩하여 파일에 secrets 값 복사
44
- run : echo $OCCUPY_SECRET | base64 --decode > $OCCUPY_SECRET_TEST_DIR/$OCCUPY_SECRET_DIR_FILE_NAME
45
+ run : echo $OCCUPY_SECRET | base64 --decode > $OCCUPY_SECRET_DIR/$OCCUPY_SECRET_DIR_FILE_NAME &&
46
+ echo $OCCUPY_SECRET | base64 --decode > $OCCUPY_SECRET_TEST_DIR/$OCCUPY_SECRET_DIR_FILE_NAME
47
+
45
48
46
49
# github action 에서 Gradle dependency 캐시 사용
47
50
- name : Cache Gradle packages
You can’t perform that action at this time.
0 commit comments