Files
voprf-vx/.gitea/workflows/publish.yml
T
vxrenovateandbreakingbread cc4e4727c2
Rust CI / cargo fmt (push) Successful in 1m7s
Rust CI / cargo clippy (push) Successful in 2m42s
Rust CI / test (1.87.0 / no backend / no frontend) (push) Successful in 4m47s
Rust CI / test (stable / no backend / no frontend) (push) Successful in 4m51s
Rust CI / test (stable / no backend / --features danger) (push) Successful in 5m1s
Rust CI / test (1.87.0 / no backend / --features danger) (push) Successful in 6m5s
Rust CI / test (1.87.0 / no backend / --features serde) (push) Successful in 5m38s
Rust CI / test (stable / no backend / --features serde) (push) Successful in 5m3s
Rust CI / test (stable / --features ristretto255-ciphersuite / no frontend) (push) Successful in 5m5s
Rust CI / test (1.87.0 / --features ristretto255-ciphersuite / no frontend) (push) Successful in 6m11s
Rust CI / test (stable / --features ristretto255-ciphersuite / --features danger) (push) Successful in 5m15s
Rust CI / test (1.87.0 / --features ristretto255-ciphersuite / --features danger) (push) Successful in 6m26s
Rust CI / test (stable / --features ristretto255-ciphersuite / --features serde) (push) Successful in 4m52s
Rust CI / test (1.87.0 / --features ristretto255-ciphersuite / --features serde) (push) Successful in 5m33s
Rust CI / cargo audit (push) Successful in 1m10s
Rust CI / no-std (thumbv6m-none-eabi / no backend) (push) Successful in 1m43s
Rust CI / no-std (wasm32-unknown-unknown / no backend) (push) Successful in 1m40s
Rust CI / no-std (thumbv6m-none-eabi / --features ristretto255-ciphersuite) (push) Successful in 1m48s
Rust CI / no-std (wasm32-unknown-unknown / --features ristretto255-ciphersuite) (push) Successful in 1m47s
chore(deps): update actions/checkout digest to 3d3c42e (#15)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) ([changelog](https://github.com/actions/checkout/compare/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0..3d3c42e5aac5ba805825da76410c181273ba90b1)) | action | digest | `9c091bb` → `3d3c42e` |

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODEuMSIsInVwZGF0ZWRJblZlciI6IjQ0LjExLjYiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: #15
Co-authored-by: Renovate Bot <[email protected]>
2026-08-05 13:19:26 +02:00

26 lines
625 B
YAML

name: Publish
on:
release:
types: [ published ]
jobs:
publish:
runs-on: linux_amd64
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: dtolnay/rust-toolchain@stable
- name: Login to crates.io
run: cargo login $CRATES_IO_TOKEN
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
- name: Dry run publish
run: cargo publish --dry-run --manifest-path Cargo.toml
- name: Publish
run: cargo publish --manifest-path Cargo.toml
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}