Skip to content

Commit

Permalink
docs: 릴리즈 노트 업데이트
Browse files Browse the repository at this point in the history
## 수정내용
- master 머지될때 Firebase AppTester 배포 및 릴리즈 생성 되도록 변경
- 기존에 create-release 유지보수 안되는 GitAction 변경 (ncipollo/release-action 변경)
- 릴리즈 생성시 Tag명은 날짜로 표시하도록 처리
?
  • Loading branch information
sieunju committed Jul 14, 2024
1 parent cf52920 commit 59174cd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
versionCode: ${{ steps.versionInfo.outputs.code }}
versionName: ${{ steps.versionInfo.outputs.name }}
releaseNote: ${{ steps.releaseNote.outputs.val }}
releaseNoteHtml: ${{ steps.releaseNote.outputs.html }}
steps:
- uses: actions/setup-java@v4
with:
Expand All @@ -36,6 +37,10 @@ jobs:
RELEASE_BODY="${RELEASE_BODY//$'\n'/'\n'}"
RELEASE_BODY="${RELEASE_BODY//$'\r'/'\r'}"
echo "val=${RELEASE_BODY}" >> "$GITHUB_OUTPUT"
RELEASE_BODY="${RELEASE_BODY//'%'/'%25'}"
RELEASE_BODY="${RELEASE_BODY//$'\n'/'%0A'}"
RELEASE_BODY="${RELEASE_BODY//$'\r'/'%0D'}"
echo "html=${RELEASE_BODY}" >> "$GITHUB_OUTPUT"
- name: SetUp Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -49,7 +54,7 @@ jobs:
options: |
{
"build_type": "release",
"release_message": "${{ steps.releaseNote.outputs.val }}",
"release_message": "${{ steps.releaseNote.outputs.html }}",
"token": "${{ secrets.FIREBASE_TOKEN }}",
"app_id": "${{ secrets.FIREBASE_RELEASE_APP_ID }}"
}
Expand Down Expand Up @@ -87,7 +92,7 @@ jobs:
name: ${{ needs.deploy_firebase.outputs.versionName }} (${{ needs.deploy_firebase.outputs.versionCode }})
body: |
## Changes
${{ needs.deploy_firebase.outputs.releaseNote }}
${{ needs.deploy_firebase.outputs.releaseNoteHtml }}
slack_notify:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 59174cd

Please sign in to comment.