File tree Expand file tree Collapse file tree 4 files changed +55
-2
lines changed Expand file tree Collapse file tree 4 files changed +55
-2
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,13 @@ jobs:
48
48
run : |
49
49
echo ::set-output name=sha::"$(shasum -a 256 ./release/gitui-mac.tar.gz | awk '{printf $1}')"
50
50
51
+ - name : Extract release notes
52
+ id : release_notes
53
+ uses : ffurrer2/extract-release-notes@v1
51
54
- name : Release
52
55
uses : softprops/action-gh-release@v1
53
56
with :
54
- # body: 'changelog '
57
+ body : ${{ steps.release_notes.outputs.release_notes }}
55
58
prerelease : true
56
59
files : |
57
60
./release/*.tar.gz
Original file line number Diff line number Diff line change
1
+ name : changestest
2
+
3
+ on :
4
+ push :
5
+ branches : [ '*' ]
6
+
7
+ jobs :
8
+ log-test :
9
+ name : Changelog Test
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@master
13
+ - name : Extract release notes
14
+ id : extract_release_notes
15
+ uses : ffurrer2/extract-release-notes@v1
16
+ with :
17
+ release_notes_file : ./release-notes.txt
18
+ - uses : actions/upload-artifact@v1
19
+ with :
20
+ name : release-notes
21
+ path : ./release-notes.txt
Original file line number Diff line number Diff line change 60
60
- uses : actions/checkout@v2
61
61
- uses : actions-rs/audit-check@v1
62
62
with :
63
- token : ${{ secrets.GITHUB_TOKEN }}
63
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
+
7
+ ## [ Unreleased]
8
+ ### Added
9
+ - introduced proper changelog
10
+
11
+ ### Changed
12
+ - improve ctrl+c handling so it is checked first and no component needs to worry of blocking it
13
+
14
+ ## [ 0.2.3] - 2020-05-12
15
+ ### Added
16
+ - support more navigation keys: home/end/pageUp/pageDown (#43 )
17
+ - highlight current tab a bit better
18
+
19
+ ## [ 0.2.2] - 2020-05-10
20
+ ### Added
21
+ - show tags in commit log (#47 )
22
+ - support home/end key in diff (#43 )
23
+
24
+ ### Changed
25
+ - close application shortcut is now the standard ` ctrl+c `
26
+ - some diff improvements (#42 )
27
+
28
+ ### Fixed
29
+ - document tab key to switch tabs (#48 )
You can’t perform that action at this time.
0 commit comments