From 43d9a85d69be9ce5f184e0be6218adca51e7c2f4 Mon Sep 17 00:00:00 2001 From: David Chalifoux Date: Sat, 11 May 2024 11:58:56 -0400 Subject: [PATCH] chore: Add cargo publish workflow --- .github/workflows/cargo-publish.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cargo-publish.yml diff --git a/.github/workflows/cargo-publish.yml b/.github/workflows/cargo-publish.yml new file mode 100644 index 0000000..1153f5e --- /dev/null +++ b/.github/workflows/cargo-publish.yml @@ -0,0 +1,18 @@ +name: Cargo Publish + +on: + push: + tags: + - v* + +env: + CARGO_TERM_COLOR: always + +jobs: + cargo-publish: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Cargo Publish + run: cargo publish --verbose