From 73516e847d275ae99d78a4ef0526fe6bf6857cd4 Mon Sep 17 00:00:00 2001 From: Kailan Blanks Date: Wed, 20 May 2026 15:58:00 +0100 Subject: [PATCH] Add workflow for automatic publishing --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 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..8397916 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: Release + +on: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]+" + +jobs: + publish: + permissions: + id-token: write + contents: read + uses: fastly/devex-reusable-workflows/.github/workflows/publish-rust-crates-io-v1.yml@main + with: + crate_name: compute-rust-sentry + expected_version: ${{ github.ref_name }}