File tree Expand file tree Collapse file tree 2 files changed +47
-1
lines changed
Expand file tree Collapse file tree 2 files changed +47
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ level :
7+ description : ' Release level'
8+ required : true
9+ default : ' patch'
10+ type : choice
11+ options :
12+ - patch
13+ - minor
14+ - major
15+
16+ defaults :
17+ run :
18+ shell : bash
19+
20+ jobs :
21+ release :
22+ runs-on : ubuntu-latest
23+ permissions :
24+ # The contents write should allow:
25+ # 1. Push to the branch of the repository that triggered the workflow.
26+ # 2. Create a tag.
27+ # 3. Push to crates.io.
28+ contents : write
29+ # The id-token write should allow the OIDC token exchange
30+ id-token : write
31+ steps :
32+ - uses : actions/checkout@v4
33+ - name : Install required packages
34+ run : sudo apt install --no-install-recommends --yes libhwloc-dev nvidia-cuda-toolkit ocl-icd-opencl-dev
35+ - name : Install cargo release
36+ run : cargo install --version 0.25.17 cargo-release
37+ - name : Set git user
38+ run : |
39+ git config --global user.email "${GITHUB_TRIGGERING_ACTOR}@users.noreply.github.com"
40+ git config --global user.name "${GITHUB_TRIGGERING_ACTOR}"
41+ - uses : rust-lang/crates-io-auth-action@v1
42+ id : auth
43+ - name : Run cargo release
44+ env :
45+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
46+ run : cargo release ${{ github.event.inputs.level }} --no-confirm --execute
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77
88## [ Unreleased]
99
10- ## [ 19.0.0] - 2025-07-07
10+ ## [ 19.0.0] - 2025-07-29
1111
1212- Fix remove clear_layer_data call [ #95 ] ( https://github.com/filecoin-project/rust-filecoin-proofs-api/pull/95 )
1313- Fix update cache clearing calls [ #106 ] ( https://github.com/filecoin-project/rust-filecoin-proofs-api/pull/106 )
You can’t perform that action at this time.
0 commit comments