diff --git a/.github/workflows/pull-request-intergration.yml b/.github/workflows/pull-request-intergration.yml index 2d980e3a4..20e0b5d42 100644 --- a/.github/workflows/pull-request-intergration.yml +++ b/.github/workflows/pull-request-intergration.yml @@ -55,9 +55,12 @@ jobs: - name: Create application-secret.properties run: | touch ./src/main/resources/application-secret.properties - echo "${{ secrets.APPLICATION_SECRET }}" > ./src/main/resources/application-secret.properties + echo "jasypt.encryptor.password=${{ secrets.APPLICATION_SECRET }}" > ./src/main/resources/application-secret.properties cat ./src/main/resources/application-secret.properties + - name: Set Spring Profile to CI + run: echo "spring.profiles.active=ci" >> ./src/main/resources/application.yml + - name: Build with Gradle run: ./gradlew build -x test