Skip to content

Commit

Permalink
add gh action: auto build and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jooyoungseo committed Nov 2, 2023
1 parent d51e500 commit 24a46ac
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build_and_update_changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build and Update Changelog

on:
push:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

- name: Generate Changelog
uses: github-changelog-generator/github-changelog-generator@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
output: CHANGELOG.md
base: ''
header-label: '# Changelog'
unreleased: true
compare-link: true
future-release: vNext

- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add CHANGELOG.md
git commit -m "Update CHANGELOG.md" && git push origin || echo "No changes to commit"

0 comments on commit 24a46ac

Please sign in to comment.