We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d4b366 commit 0cae86eCopy full SHA for 0cae86e
.github/workflows/cd.yml
@@ -18,6 +18,9 @@ jobs:
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v3
21
+ with:
22
+ token: ${{ secrets.SUBMODULE_TOKEN }}
23
+ submodules: true
24
25
- name: Set up JDK 17
26
uses: actions/setup-java@v3
@@ -29,8 +32,9 @@ jobs:
29
32
run: chmod +x ./gradlew
30
33
31
34
- name: Build with Gradle
- run: ./gradlew clean build --stacktrace
-
35
+ env:
36
+ JASYPT_PASSWORD: ${{ secrets.JASYPT_PASSWORD }} # GitHub Secrets에서 비밀번호 가져오기
37
+ run: ./gradlew build -Djasypt.encryptor.password=${{ secrets.JASYPT_PASSWORD }} --info
38
39
- name: Build the Docker image
40
run: docker build . --file Dockerfile --tag ${{ env.DOCKER_IMAGE_NAME }}:latest
0 commit comments