Skip to content

Commit

Permalink
범인은 대문자
Browse files Browse the repository at this point in the history
  • Loading branch information
JungHyunMoon committed Jan 15, 2024
1 parent b67d5bf commit b4f4187
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ on:
branches:
- "dev1"
- "CICD"
permissions:
contents: write
pull-requests: write
permissions: write-all
jobs:
build:
deploy:
runs-on: ubuntu-latest
env:
ADMIN_SECRET_KEY: ${{ secrets.ADMIN_SECRET_KEY }}
Expand All @@ -27,22 +25,24 @@ jobs:
KAKAO_API_KEY: ${{ secrets.KAKAO_API_KEY }}
NAVER_API_KEY: ${{ secrets.NAVER_API_KEY }}
NAVER_API_SECRET: ${{ secrets.NAVER_API_SECRET }}

steps:
- name: Git Checkout
- name: Checkout
uses: actions/checkout@v3


- name: Java Setup
- name: setup jdk
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
redis-version: 6
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew

- name: Build with Gradle
run: |
./gradlew clean build
- name: gradlew test
run: ./gradlew test

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
Expand Down
24 changes: 12 additions & 12 deletions src/main/resources/application-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ spring:
port: 6379

jwt:
secret_key: ${jwt.secret_key}
secret_key: ${JWT_SECRET_KEY}

api-keys:
football: ${football-api-key}
basketball: ${basketball-api-key}
baseball: ${baseball-api-key}
football: ${FOOTBALL_API_KEY}
basketball: ${BASKETBALL_API_KEY}
baseball: ${BASEBALL_API_KEY}

cloud:
aws:
credentials:
accessKey: ${aws_accessKey}
secretKey: ${aws_secretKey}
accessKey: ${AWS_ACCESSKEY}
secretKey: ${AWS_SECRETKEY}
region:
static: ap-northeast-2
stack:
Expand All @@ -47,13 +47,13 @@ cloud:
oauth:
api:
secret:
naver: ${naver-api-secret}
google: ${google-api-secret}
naver: ${NAVER_API_SECRET}
google: ${GOOGLE_API_SECRET}
key:
kakao: ${kakao-api-key}
naver: ${naver-api-key}
google: ${google-api-key}
kakao: ${KAKAO_API_KEY}
naver: ${NAVER_API_KEY}
google: ${GOOGLE_API_KEY}

admin:
key:
secret: ${admin-secret-key}
secret: ${ADMIN_SECRET_KEY}

0 comments on commit b4f4187

Please sign in to comment.