Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-ji-hoon committed Sep 29, 2024
1 parent ef26031 commit 521dbd4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy_google_play_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ jobs:
PR_NUMBER=${{ github.event.pull_request.number }}
LAST_COMMENT=$(gh pr view $PR_NUMBER --comments --json comments --jq '.comments[-1].body')
echo "Last comment: $LAST_COMMENT"
echo "WHATS_NEW_DIR=$(echo "$LAST_COMMENT" | sed 's/ /_/g')" >> $GITHUB_ENV
# release note가 생성될 폴더
mkdir -p whatsnew
# 기본 note이며 나라에 따라서 en-US.txt 이런 형태로 만들면 다국어로 대응도 됨
echo "$LAST_COMMENT" > whatsnew/default.txt
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -138,7 +141,7 @@ jobs:
serviceAccountJsonPlainText: ${{ secrets.FIREBASE_CREDENTIALS }}
packageName: com.pomonyang.mohanyang
releaseFiles: app/build/outputs/bundle/release/app-release.aab
whatsNewDirectory: ${{ env.WHATS_NEW_DIR }}
whatsNewDirectory: whatsnew
track: internal
status: draft

0 comments on commit 521dbd4

Please sign in to comment.