Skip to content

Commit

Permalink
#T-10855 [feat] cd workflow 수정
Browse files Browse the repository at this point in the history
apple secret key 생성 로직 구현
  • Loading branch information
KWY0218 committed May 31, 2024
1 parent 37a0408 commit a7c381b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
echo "${{ secrets.APPLICATION_DEV }}" >> ./application-dev.yml
cat ./application-dev.yml
- name: 'Get key from Github Secrets'
run: |
pwd
mkdir -p ./operation-api/src/main/resources/static
echo "${{ secrets.APPLE_KEY }}" | base64 --decode > ./operation-api/src/main/resources/static/${{ secrets.APPLE_KEY_NAME }}
- name: Build with Gradle
run: ./gradlew build
shell: bash
Expand Down

0 comments on commit a7c381b

Please sign in to comment.