From e842e0edc021a0cf1ffbfc2a5a65a336e29b1af6 Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Wed, 13 Apr 2022 22:56:43 -0500 Subject: [PATCH] Auto publish to crates.io on new tag push --- .github/workflows/publish.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..a6ed6bf --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,13 @@ +on: + push: + tags: + - 'v.*.*' +steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - uses: katyo/publish-crates@v1 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}