File tree 1 file changed +24
-5
lines changed
1 file changed +24
-5
lines changed Original file line number Diff line number Diff line change
1
+ # on:
2
+ # workflow_dispatch:
3
+ # inputs:
4
+ # version:
5
+ # type: string
6
+ # description: 'Version'
7
+ # required: true
1
8
on :
2
9
push :
3
10
branches :
4
- - master
11
+ - feat/changelog
5
12
6
13
permissions :
7
14
contents : write
8
15
pull-requests : write
9
16
10
- name : release-please
17
+ name : release
11
18
12
19
jobs :
13
- release-please :
20
+ tag :
14
21
runs-on : ubuntu-latest
15
22
steps :
16
- - uses : googleapis/release-please-action @v4
23
+ - uses : actions/checkout @v4
17
24
with :
18
25
token : ${{ secrets.GH_TOKEN }}
19
- release-type : simple
26
+ - name : Install Neovim
27
+ uses : rhysd/action-setup-vim@v1
28
+ id : neovim
29
+ with :
30
+ neovim : true
31
+ version : v0.10.3
32
+ - name : Update changelog
33
+ run : |
34
+ nvim -l scripts/generate_changelog.lua 0.4.2
35
+ # nvim -l scripts/generate_changelog.lua ${{ github.event.inputs.version }}
36
+ - name : Print changelog
37
+ run : |
38
+ cat docs/changelog.org
You can’t perform that action at this time.
0 commit comments