summaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
diff options
context:
space:
mode:
authorHenry <mail@henrygressmann.de>2026-04-26 21:59:15 +0200
committerHenry <mail@henrygressmann.de>2026-04-26 22:16:41 +0200
commita8d7f3752416f76e9eb9e429c569f2bef70f1b51 (patch)
treedaffb517ca1ab6dee47a10a22885ae39126d13c2 /.github/workflows/release.yaml
parent463a3a6f56a5ca06cda890fd6fe7f16485ef70a0 (diff)
chore: v0.9.0-alpha.0
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to '.github/workflows/release.yaml')
-rw-r--r--.github/workflows/release.yaml21
1 files changed, 21 insertions, 0 deletions
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 }}