From a8d7f3752416f76e9eb9e429c569f2bef70f1b51 Mon Sep 17 00:00:00 2001 From: Henry Date: Sun, 26 Apr 2026 21:59:15 +0200 Subject: chore: v0.9.0-alpha.0 Signed-off-by: Henry --- .github/workflows/release.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/release.yaml (limited to '.github/workflows/release.yaml') diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..d1492a7 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,21 @@ +name: Publish +on: + push: + tags: ["v*"] + +jobs: + publish: + runs-on: ubuntu-latest + environment: release + permissions: + id-token: write + contents: read + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + persist-credentials: false + - uses: rust-lang/crates-io-auth-action@bbd81622f20ce9e2dd9622e3218b975523e45bbe # v1.0.4 + id: auth + - run: cargo publish --workspace + env: + CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }} -- cgit v1.3.1