Skip to content

Commit

Permalink
[CHORE] ci 스크립트 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sung-silver committed Feb 1, 2025
1 parent 750a310 commit 1a2088f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
- name: 🔑 Create Key File related JWT
run: |
mkdir -p ./sopt-auth-backend/src/main/resources
echo "${{ secrets.JWT_PRIVATE_KEY }}" > ./sopt-auth-backend/src/main/resources/jwt_private_key.pem
echo "${{ secrets.JWT_PUBLIC_KEY }}" > ./sopt-auth-backend/src/main/resources/jwt_public_key.pem
mkdir -p ./src/main/resources
echo "${{ secrets.JWT_PRIVATE_KEY }}" > ./src/main/resources/jwt_private_key.pem
echo "${{ secrets.JWT_PUBLIC_KEY }}" > ./src/main/resources/jwt_public_key.pem
- name: 🔑 Create Test Environment File
run: |
mkdir -p ./sopt-auth-backend/src/main/resources/env
echo "${{ secrets.TEST_ENV_FILE }}" > ./sopt-auth-backend/src/main/resources/env/test.env
mkdir -p ./src/main/resources/env
echo "${{ secrets.TEST_ENV_FILE }}" > ./src/main/resources/env/test.env
- name: 🧱 Build and Test with Gradle
run: ./gradlew build --no-daemon
Expand Down

0 comments on commit 1a2088f

Please sign in to comment.