From ba49db2cb9932f2ec90ba9466f980b19bb102081 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Fri, 9 Sep 2022 19:01:05 +0300 Subject: [PATCH] Remove automatic publish script This script is confusing and provides no value especially with release branches and patch fixes. --- .github/workflows/publish.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 20ec0fce..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Publish - -on: - push: - tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 - -jobs: - Publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: hecrj/setup-rust-action@v1 - with: - rust-version: stable - components: rustfmt - - name: Publish to crates.io - run: cargo publish --token ${{ secrets.cratesio_token }}