Commit 479df88 saying121
committed
1 parent 78edd8e commit 479df88 Copy full SHA for 479df88
File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -191,11 +191,16 @@ jobs:
191
191
192
192
- name : Generate completions
193
193
if : ${{ matrix.os == 'ubuntu-latest' && matrix.target == 'x86_64-unknown-linux-gnu' }}
194
+ env :
195
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
196
+ COMMIT_MSG : |
197
+ generate shell completions
194
198
run : |
195
- ./target/x86_64-unknown-linux-gnu/release/lcode --generate=zsh | tee ./completions/_lcode
196
- ./target/x86_64-unknown-linux-gnu/release/lcode --generate=bash | tee ./completions/lcode.bash
197
- ./target/x86_64-unknown-linux-gnu/release/lcode --generate=fish | tee ./completions/lcode.fish
199
+ ./target/x86_64-unknown-linux-gnu/release/lcode --generate=zsh > ./completions/_lcode
200
+ ./target/x86_64-unknown-linux-gnu/release/lcode --generate=bash > ./completions/lcode.bash
201
+ ./target/x86_64-unknown-linux-gnu/release/lcode --generate=fish > ./completions/lcode.fish
198
202
203
+ git checkout main
199
204
git config user.email "actions@github"
200
205
git config user.name "Github Actions"
201
206
git remote set-url origin https://x-access-token:"${GITHUB_TOKEN}"@github.com/"${GITHUB_REPOSITORY}".git
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file.
6
6
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
7
7
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
8
8
9
+ ## [ 0.8.1] - 2024-04-28
10
+
11
+ ### Fixed
12
+
13
+ - Cli: ` lcode fzy detail ` and ` lcode generate ` help
14
+
9
15
## [ 0.8.0] - 2024-04-28
10
16
11
17
### Added
You can’t perform that action at this time.
0 commit comments