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