Skip to content

Commit

Permalink
cng
Browse files Browse the repository at this point in the history
  • Loading branch information
kanghyungmin committed Sep 23, 2024
1 parent 4e0eee2 commit 582475a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3.4.0
uses: actions/checkout@v4.1.7

- name: Get Pull Requests
id: get_prs
Expand All @@ -26,11 +26,11 @@ jobs:
run: |
echo "## What's Changed" > release-notes.md
echo "" >> release-notes.md
echo "${{ env.pr_list }}" >> release-notes.md # 환경 변수 사용
echo "${{ steps.get_prs.outputs.pr_list }}" >> release-notes.md # 환경 변수 사용
echo "" >> release-notes.md
echo "(************)"
echo "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${{ github.ref_name }}...${{ github.ref_name }}" >> release-notes.md
cat release-notes.md
cat release-notes.md
echo "(************)"
- name: Publish Release Notes
Expand All @@ -39,6 +39,6 @@ jobs:
tag_name: ${{ github.ref_name }} # refs/tags/ 없이 태그 이름만 사용
name: 'Release ${{ github.ref_name }}'
body: |
$(cat release-notes.md) # 파일 내용 읽기
$(cat release-notes.md)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 582475a

Please sign in to comment.