From fbac5797a874808b2f17218bafc7ecb17bd77667 Mon Sep 17 00:00:00 2001 From: bainianbei <13028655713@163.com> Date: Sun, 2 Aug 2026 17:01:15 +0800 Subject: [PATCH] ci: remove auto release workflow --- .github/workflows/release.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index f56a6d5..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Auto Release - -on: - push: - # Sequence of patterns matched against refs/tags - tags: - - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 - -jobs: - release: - name: Auto Release by Tags - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - - name: Install Rust toolchain - run: | - rustup set profile minimal - rustup update --no-self-update stable - rustup default stable - - - name: Cargo Login - run: cargo login ${{ secrets.CARGO_TOKEN }} - - - name: Cargo Publish - run: cargo publish - - - name: GitHub Release - run: gh release create ${{ github.ref_name }} --title "Release ${{ github.ref_name }}" --generate-notes - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file