-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from yuma140902/gha-release
ci: update release workflow
- Loading branch information
Showing
2 changed files
with
73 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Generate changelog before release.yml | ||
|
||
on: | ||
pull_request: | ||
type: | ||
- opened | ||
|
||
env: | ||
PJ_NAME: tempura | ||
|
||
jobs: | ||
changelog: | ||
name: Generate and commit changelog for ${{ github.head_ref }} | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.head_ref, 'release/') | ||
outputs: | ||
changelog: ${{ steps.changelog.outputs.changes }} | ||
steps: | ||
- name: Setup | Checkout Code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Parse version | ||
run: | | ||
ref=${{ github.head_ref }} | ||
version=${ref#release/} | ||
echo "Version=$version" >> $GITHUB_ENV | ||
- name: Setup | Go | ||
uses: actions/setup-go@v3 | ||
|
||
- name: Setup | Install git-chglog | ||
run: go install github.com/git-chglog/git-chglog/cmd/git-chglog@latest | ||
|
||
- name: Generate changelog | ||
run: | | ||
/home/runner/go/bin/git-chglog ${{ env.Version }} | tee RELEASE_NOTE.md | ||
/home/runner/go/bin/git-chglog ..${{ env.Version }} | tee CHANGELOG.md | ||
- name: Commit CHANGELOG.md | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
branch: master | ||
commit_message: 'doc: update CHANGELOG.md for ${{ env.Version }} [skip ci]' | ||
file_pattern: CHANGELOG.md | ||
tagging_message: ${{ env.Version }} | ||
|
||
- name: Post comments | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
URL: ${{ github.event.pull_request.html_url }} | ||
run: | ||
gh pr comment -F RELEASE_NOTE.md "${URL}" | ||
|
||
- name: Upload CHANGELOG-${{ env.Version }}.md | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: release-note | ||
path: RELEASE_NOTE.md | ||
|
||
- name: Upload CHANGELOG.md | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: changelog-all | ||
path: CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters