From 56759d2320a05bd65240fb4872f579825fb2ead9 Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Date: Tue, 22 Nov 2022 16:53:06 +0100 Subject: [PATCH] Added release ci file (#19) --- .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