Skip to content

Commit

Permalink
refactor : ci test yml 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Qbeom0925 committed Jan 10, 2024
1 parent 2dec8a5 commit 5458259
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,15 @@ jobs:
shell: bash

- name: Make test application.yml
run: |
mkdir -p src/test/resources
echo "${{ secrets.PROPERTIES_SECRET_TEST }}" > src/test/resources/application.yml
# run: |
# mkdir -p src/test/resources
# echo "${{ secrets.PROPERTIES_SECRET_TEST }}" | base64 --decode > src/test/resources/application.yml
# shell: bash
- run: |
cd ./src/test/resources
touch ./src/test/application.yml
echo "${{ secrets.PROPERTIES_SECRET_TEST }}" > src/test/resources/application.yml
shell: bash
- name: Build and analyze
run: ./gradlew test sonar --info
Expand Down

0 comments on commit 5458259

Please sign in to comment.