Skip to content

Commit

Permalink
chore(ci): update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane committed Oct 13, 2023
1 parent 967b7c5 commit 3d4120a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 24 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Update CHANGELOG and create release

on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}

- name: Create Release
uses: ncipollo/release-action@v1.12.0
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}

- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: develop
commit_message: "docs: update CHANGELOG.md for ${{ github.ref_name }}"
file_pattern: CHANGELOG.md
24 changes: 0 additions & 24 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,6 @@ jobs:
npm version ${{ inputs.release }}
git push --follow-tags
- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}

- name: Create Release
uses: ncipollo/release-action@v1.12.0
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}

- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: develop
commit_message: "docs: update CHANGELOG.md for ${{ github.ref_name }}"
file_pattern: CHANGELOG.md

- name: Merge develop in main
uses: devmasx/merge-branch@master
with:
Expand Down

0 comments on commit 3d4120a

Please sign in to comment.