From 85d94fe9ab5c7f74008d8051397be2347725fb9a Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Mon, 1 May 2023 14:34:40 +0200 Subject: [PATCH] [ci] Create the crates publish action --- .github/workflows/crates-releae.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/crates-releae.yml diff --git a/.github/workflows/crates-releae.yml b/.github/workflows/crates-releae.yml new file mode 100644 index 0000000..3b261ce --- /dev/null +++ b/.github/workflows/crates-releae.yml @@ -0,0 +1,18 @@ +name: Publish to crates.io + +on: + release: + types: [ created, published ] + +jobs: + publish-crates: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - uses: katyo/publish-crates@v2 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}