From 7c831ce113a53e4dae8a386f4988525af10640b8 Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Fri, 4 Nov 2022 12:51:33 +0100 Subject: [PATCH] Added release ci file --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f51dcb3 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +on: + push: + tags: + - v*.*.* + +name: CI + +jobs: + release: + 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 }} \ No newline at end of file