From 0ab332e330f173be9bacb9f671b5400a99af6353 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 27 Mar 2026 00:49:44 -0700 Subject: [PATCH] Feat: bootstrap zwus-rs v0.1 Co-authored-by: gpt-5.3-codex --- .github/workflows/publish.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..82230c4 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,25 @@ +name: publish + +on: + workflow_dispatch: + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - uses: actions/checkout@v5 + + - name: Install stable Rust + run: | + rustup toolchain install stable --profile minimal + rustup default stable + + - name: Package check + run: cargo publish --dry-run + + - name: Publish + run: cargo publish + env: + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}