From acdcc2125523d09d0c1e0d78641fefe9875b3198 Mon Sep 17 00:00:00 2001 From: Mist Date: Sun, 3 Nov 2024 16:47:00 +0800 Subject: [PATCH] f --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..59bc077 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - v[0-9]+.* + +jobs: + upload-assets: + needs: create-release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: taiki-e/upload-rust-binary-action@v1 + with: + # (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload. + # Note that glob pattern is not supported yet. + bin: codesnap + # (required) GitHub token for uploading assets to GitHub Releases. + token: ${{ secrets.GITHUB_TOKEN }} + manifest-path: ./cli/Cargo.toml