Skip to content

Commit

Permalink
release: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Jan 8, 2024
1 parent 27bd316 commit 6d58da8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 5 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Create release

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

permissions:
contents: write

jobs:
release:
name: Release pushed tag
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Filter CHANGELOG
run: |
sed '1,/## \[/d;/## \[/Q' CHANGELOG.md > CHANGELOG_LATEST.md
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "${{ github.ref_name }}" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
-F CHANGELOG_LATEST.md \
--generate-notes
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [23.09] 2023-09-20
## [24.01] 2023-01-08
### Added
- new addresses related to the lazerus group
- added actor kurant
### Changed
- added actors to eth wordcloud
- added actor nicechange

## [23.06] 2023-06-12
### Changed
Expand Down

0 comments on commit 6d58da8

Please sign in to comment.