Remove automatic publish script

This script is confusing and provides no value especially
with release branches and patch fixes.
This commit is contained in:
Kirill Chibisov 2022-09-09 19:01:05 +03:00 committed by GitHub
parent a4695c5397
commit ba49db2cb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 }}