File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
deploy :
10
10
runs-on : ubuntu-latest
11
- outputs :
12
- tag_name : ${{ steps.prepare_tag.outputs.tag_name }}
13
11
steps :
14
12
- uses : actions/checkout@v2
15
13
- name : Build the doc
16
14
run : |
17
15
cargo doc --all-features --no-deps
18
16
echo "<meta http-equiv=refresh content=0;url=pyo3/index.html>" > target/doc/index.html
19
17
20
- - name : Prepare tag
21
- id : prepare_tag
22
- run : |
23
- TAG_NAME="${GITHUB_REF##*/}"
24
- echo "::set-output name=tag_name::${TAG_NAME}"
25
-
26
18
- name : Deploy
27
19
28
20
with :
29
21
github_token : ${{ secrets.GITHUB_TOKEN }}
30
22
publish_dir : ./target/doc/
31
- destination_dir : ${{ steps.prepare_tag.outputs.tag_name }}
32
- full_commit_message : ' Upload documentation for ${{ steps.prepare_tag.outputs.tag_name }} '
23
+ destination_dir : .
24
+ full_commit_message : ' Upload documentation for current main '
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ rust-numpy
7
7
Rust bindings for the NumPy C-API.
8
8
9
9
## API documentation
10
- - [ Latest release (possibly broken) ] ( https://docs.rs/numpy )
10
+ - [ Latest release] ( https://docs.rs/numpy )
11
11
- [ Current main] ( https://pyo3.github.io/rust-numpy )
12
12
13
13
You can’t perform that action at this time.
0 commit comments