mirror of
https://github.com/hustcer/deepseek-review.git
synced 2026-05-13 05:16:05 +08:00
fix: Try to fix workflow error for Nu 0.111 (#197)
* fix: Try to fix workflow error for Nu 0.111 * chore: Update readme
This commit is contained in:
@@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
[中文说明](README.zh-CN.md)
|
[中文说明](README.zh-CN.md)
|
||||||
|
|
||||||
`deepseek-review` offers seamless integration with DeepSeek models on SiliconCloud. [Sign Up Now](https://cloud.siliconflow.cn/i/rqCdIxzS) to **claim your free 20 million tokens** and start exploring its capabilities!
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
### GitHub Action
|
### GitHub Action
|
||||||
|
|||||||
@@ -5,8 +5,6 @@
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
本工具也支持使用 SiliconCloud 上的 DeepSeek 模型,[注册](https://cloud.siliconflow.cn/i/rqCdIxzS) 就**免费赠送 2000 万 Token**,赶紧试试吧!
|
|
||||||
|
|
||||||
## 特性
|
## 特性
|
||||||
|
|
||||||
### GitHub Action
|
### GitHub Action
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ words:
|
|||||||
- hustcer
|
- hustcer
|
||||||
- Nushell
|
- Nushell
|
||||||
- creatio
|
- creatio
|
||||||
|
- pipefail
|
||||||
- justfile
|
- justfile
|
||||||
- lefthook
|
- lefthook
|
||||||
- deepseek
|
- deepseek
|
||||||
|
|||||||
@@ -193,7 +193,8 @@ export def git-check [
|
|||||||
# Check if current directory is a git repo
|
# Check if current directory is a git repo
|
||||||
export def is-repo [] {
|
export def is-repo [] {
|
||||||
let checkRepo = try {
|
let checkRepo = try {
|
||||||
do -i { git rev-parse --is-inside-work-tree } | complete
|
# Put `complete` inside `do` block to avoid pipefail error in Nushell 0.110+
|
||||||
|
do { git rev-parse --is-inside-work-tree | complete }
|
||||||
} catch {
|
} catch {
|
||||||
({ stdout: 'false' })
|
({ stdout: 'false' })
|
||||||
}
|
}
|
||||||
@@ -205,8 +206,8 @@ export def has-ref [
|
|||||||
ref: string # The git ref to check
|
ref: string # The git ref to check
|
||||||
] {
|
] {
|
||||||
if not (is-repo) { return false }
|
if not (is-repo) { return false }
|
||||||
# Brackets were required here, or error will occur
|
# Put `complete` inside `do` block to avoid pipefail error in Nushell 0.110+
|
||||||
let parse = (do -i { git rev-parse --verify -q $ref } | complete)
|
let parse = (do { git rev-parse --verify -q $ref | complete })
|
||||||
if ($parse.stdout | is-empty) { false } else { true }
|
if ($parse.stdout | is-empty) { false } else { true }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -46,9 +46,9 @@ export def 'make-release' [
|
|||||||
export def has-ref [
|
export def has-ref [
|
||||||
ref: string # The git ref to check
|
ref: string # The git ref to check
|
||||||
] {
|
] {
|
||||||
let checkRepo = (do -i { git rev-parse --is-inside-work-tree } | complete)
|
# Put `complete` inside `do` block to avoid pipefail error in Nushell 0.110+
|
||||||
|
let checkRepo = (do { git rev-parse --is-inside-work-tree | complete })
|
||||||
if not ($checkRepo.stdout =~ 'true') { return false }
|
if not ($checkRepo.stdout =~ 'true') { return false }
|
||||||
# Brackets were required here, or error will occur
|
let parse = (do { git rev-parse --verify -q $ref | complete })
|
||||||
let parse = (do -i { git rev-parse --verify -q $ref } | complete)
|
|
||||||
if ($parse.stdout | is-empty) { false } else { true }
|
if ($parse.stdout | is-empty) { false } else { true }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user