File tree Expand file tree Collapse file tree 4 files changed +43
-3
lines changed Expand file tree Collapse file tree 4 files changed +43
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ push :
5
+ branches : master
6
+ tags : v*
7
+
8
+ pull_request :
9
+ branches : master
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ matrix :
16
+ julia-version : [1.4]
17
+ julia-arch : [x86]
18
+ os : [ubuntu-latest]
19
+ steps :
20
+ - uses : actions/checkout@v1.0.0
21
+ - name : Setup julia
22
+ uses : julia-actions/setup-julia@latest
23
+ with :
24
+ version : ${{ matrix.julia-version }}
25
+ - name : Install dependencies
26
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
27
+ - name : Build and deploy
28
+ env :
29
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
30
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
31
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change 3
3
[ ![ Build Status] ( https://ci.appveyor.com/api/projects/status/github/SimonDanisch/GeometryBasics.jl?svg=true )] ( https://ci.appveyor.com/project/SimonDanisch/GeometryBasics-jl )
4
4
[ ![ Codecov] ( https://codecov.io/gh/SimonDanisch/GeometryBasics.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/SimonDanisch/GeometryBasics.jl )
5
5
6
+ ** Documentation** : [ ![ ] [ docs-stable-img ]] [ docs-stable-url ] [ ![ ] [ docs-master-img ]] [ docs-master-url ]
7
+
8
+ [ docs-stable-img ] : https://img.shields.io/badge/docs-stable-lightgrey.svg
9
+ [ docs-stable-url ] : http://juliageometry.github.io/GeometryBasics.jl/stable/
10
+ [ docs-master-img ] : https://img.shields.io/badge/docs-dev-blue.svg
11
+ [ docs-master-url ] : http://juliageometry.github.io/GeometryBasics.jl
6
12
7
13
# GeometryBasics.jl
8
14
Original file line number Diff line number Diff line change
1
+ [deps ]
2
+ Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
+ GeometryBasics = " 5c1252a2-5f33-56bf-86c9-59e7332b4326"
Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ makedocs(
18
18
" meshes.md" ,
19
19
" decomposition.md" ,
20
20
" distancefields.md" ,
21
- " metadata.jl " ,
21
+ " metadata.md " ,
22
22
" api.md" ,
23
23
],
24
- modules = [GeometryTypes ]
24
+ modules = [GeometryBasics ]
25
25
)
26
26
27
27
deploydocs (
28
- repo = " github.com/JuliaGeometry/GeometryTypes .jl.git" ,
28
+ repo = " github.com/JuliaGeometry/GeometryBasics .jl.git" ,
29
29
push_preview = true
30
30
)
You can’t perform that action at this time.
0 commit comments