File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,29 +27,12 @@ jobs:
2727 - name : add application-yml # yml ๊ฒฝ๋ก ๋ฐ ํ์ผ ์ถ๊ฐ
2828 run : |
2929 mkdir -p ./src/main/resources
30- touch ./src/main/resources/application.yml
31- echo "${{ secrets.APP_YML_BASE64 }}" | base64 --decode > ./src/main/resources/application.yml
30+ touch ./src/main/resources/application.properties
31+ echo "${{ secrets.APP_PROPERTIES }}" > ./src/main/resources/application.properties
3232 find src
3333
34- - name : check placeholders in APP_YML
35- run : |
36- echo "${{ secrets.APP_YML }}" > checkfile.yml
37-
38- echo "===== Checking whether JWT_EXP, JWT_KEY ๋ฑ์ด ๋ค์ด์๋์ง ====="
39- grep -n 'jwt:' checkfile.yml || true
40- grep -n 'expiration: ${JWT_EXP}' checkfile.yml || true
41- grep -n 'secret:' checkfile.yml || true
42-
43- echo "===== Checking done. ====="
44-
45- - name : check application-yml # yml ๋ด์ฉ ํ์ธ
46- run : |
47- echo "${{ secrets.APP_YML }}" > ./src/main/resources/application.yml
48- echo "==== application.yml ๋ด์ฉ ํ์ธ ===="
49- cat src/main/resources/application.yml
50-
5134 - name : Build with Gradle # ์ฒดํฌ์์ํ ์ฝ๋๋ค์ ๊ธฐ๋ฐ์ผ๋ก ๊ทธ๋๋ค ๋น๋
52- run : ./gradlew build
35+ run : ./gradlew build -x test
5336
5437 - name : Check resources
5538 run : |
You canโt perform that action at this time.
0 commit comments