Skip to content

Commit

Permalink
Merge branch 'hotfix-petrzpav' into master-3
Browse files Browse the repository at this point in the history
  • Loading branch information
petrzpav committed Jul 17, 2023
2 parents a413c1f + 7fc3bea commit b6f1acb
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,20 @@ jobs:
- name: Make distsingle
run: make distsingle

- uses: "marvinpinto/action-automatic-releases@latest"
- name: Retrieve version
run: |
echo CHANGES="$(./scripts/changelog-latest CHANGELOG.md)" >> $GITHUB_OUTPUT
id: changelog

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.CHANGES }}
draft: false
prerelease: false
files: |
*.sh
*.tar.gz

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.0.2] - 2023-07-17

### Fixed

- Fix automatic releases chnagelog.

## [3.0.1] - 2023-07-17

### Fixed
Expand Down Expand Up @@ -105,6 +111,7 @@ _Stable release based on [3.0.0-rc.2]._

## [1.0.0] - 2016-12-22

[3.0.2]: https://https://github.com/internetguru/flow/compare/v3.0.1...v3.0.2
[3.0.1]: https://https://github.com/internetguru/flow/compare/v3.0.0...v3.0.1
[3.0.0]: https://https://github.com/internetguru/flow/compare/v2.2.0...v3.0.0
[3.0.0-rc.2]: https://github.com/internetguru/flow/releases/tag/v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.1
3.0.2

0 comments on commit b6f1acb

Please sign in to comment.