Skip to content

Commit f89ebd0

Browse files
authored
Merge pull request #433 from Team-WSS/fix/#432
[FIX] Apple Login 변수 값 CI/CD workflow 수정
2 parents f60a8a9 + 97d9fe7 commit f89ebd0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/AutoAssignAndReview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ jobs:
99
- uses: hkusu/review-assign-action@v1
1010
with:
1111
assignees: ${{ github.actor }}
12-
reviewers: Kim-TaeUk, rinarina0429, sansan20535, GiJungPark, EunjeongHeo
12+
reviewers: sansan20535, GiJungPark, EunjeongHeo

.github/workflows/CD-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535

3636
- name: Create apple login key file
3737
env:
38-
API_KEY: ${{ secrets.APPSTORE_API_KEY_ID }}
38+
API_KEY: ${{ secrets.APPSTORE_API_KEY_ID_DEV }}
3939
run: |
4040
mkdir -p src/main/resources/static/apple
41-
echo "${{ secrets.APPLE_AUTH_KEY }}" > src/main/resources/static/apple/AuthKey_$API_KEY.p8
41+
echo "${{ secrets.APPLE_AUTH_KEY_DEV }}" > src/main/resources/static/apple/AuthKey_$API_KEY.p8
4242
4343
- name: Grant execute permission for gradlew
4444
run: chmod +x gradlew

.github/workflows/CI-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838

3939
- name: Create apple login key file
4040
env:
41-
API_KEY: ${{ secrets.APPSTORE_API_KEY_ID }}
41+
API_KEY: ${{ secrets.APPSTORE_API_KEY_ID_DEV }}
4242
run: |
4343
mkdir -p src/main/resources/static/apple
44-
echo "${{ secrets.APPLE_AUTH_KEY }}" > src/main/resources/static/apple/AuthKey_$API_KEY.p8
44+
echo "${{ secrets.APPLE_AUTH_KEY_DEV }}" > src/main/resources/static/apple/AuthKey_$API_KEY.p8
4545
4646
- name: Grant execute permission for gradlew
4747
run: chmod +x gradlew

0 commit comments

Comments
 (0)