From b90de0cd48fc7d02257e22bfb89bc8895602bbf0 Mon Sep 17 00:00:00 2001 From: eric Date: Fri, 5 Jan 2024 15:29:12 +0800 Subject: [PATCH] rust --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index beb481f..cc91a5b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -11,7 +11,7 @@ env: CARGO_TERM_COLOR: always jobs: - publish-tauri: + build-and-release: permissions: contents: write strategy: @@ -53,6 +53,7 @@ jobs: --title "Release ${{ github.ref_name }}" \ --notes "Release notes for ${{ github.ref_name }}" \ --draft + shell: bash # Upload the built artifact to the release - name: Upload Release Asset @@ -60,3 +61,4 @@ jobs: gh release upload ${{ github.ref_name }} \ ./target/release/ncbi \ --clobber + shell: bash