Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mon-ius committed Sep 16, 2023
1 parent a5afdb1 commit 865928f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
default: '0'
required: true
type: string
note:
note_hash:
default: 'None'
required: true
type: string
Expand All @@ -38,7 +38,7 @@ jobs:
uses: AUTOM77/Rust-Actions/.github/workflows/pre-release.yml@main
with:
push_tag: ${{ needs.push.outputs.tag }}
note: "Hash-tag: ${{ inputs.note }}"
note: "Hash-tag: ${{ inputs.note_hash }}"
secrets: inherit

cross-release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cli:
runs-on: "ubuntu-latest"
outputs:
ref: ${{ steps.post.outputs.ret }}
hash: ${{ steps.post.outputs.hash }}
steps:
-
name: Checkout
Expand Down Expand Up @@ -70,4 +70,4 @@ jobs:
with:
cargo_loc: ${{ needs.pre.outputs.cargo_loc }}
cargo_bin: ${{ needs.pre.outputs.cargo_bin }}
note: ${{ needs.cli.outputs.ref }}
note_hash: ${{ needs.cli.outputs.hash }}
4 changes: 2 additions & 2 deletions kingsbur-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ pub async fn cat(addr: String, key: String, vec: Vec<String>) -> WebDriverResult
for handle in handles {
results.push(handle.await.unwrap().unwrap());
}
let _ret = results.join("|");
print!("ret={_ret:?}");
let _hash = results.join("|");
print!("hash={_hash:?}");
Ok(())
}

Expand Down

0 comments on commit 865928f

Please sign in to comment.