File tree Expand file tree Collapse file tree 4 files changed +41
-18
lines changed Expand file tree Collapse file tree 4 files changed +41
-18
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - ' master'
8
+ - ' release-'
9
+ tags : ' *'
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ matrix :
16
+ julia-version : [1]
17
+ os : [ubuntu-latest]
18
+ steps :
19
+ - uses : actions/checkout@v2
20
+ - uses : julia-actions/setup-julia@latest
21
+ with :
22
+ version : ${{ matrix.julia-version }}
23
+ - name : Cache artifacts
24
+ uses : actions/cache@v1
25
+ env :
26
+ cache-name : cache-artifacts
27
+ with :
28
+ path : ~/.julia/artifacts
29
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
30
+ restore-keys : |
31
+ ${{ runner.os }}-test-${{ env.cache-name }}-
32
+ ${{ runner.os }}-test-
33
+ ${{ runner.os }}-
34
+ - name : Install dependencies
35
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
36
+ - name : Build and deploy
37
+ env :
38
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change 9
9
- uses : JuliaRegistries/TagBot@v1
10
10
with :
11
11
token : ${{ secrets.GITHUB_TOKEN }}
12
+ ssh : ${{ secrets.TAGBOT }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ Packages that appear to perform just a subset of what ImageFiltering does:
29
29
[ docs-stable-img ] : https://img.shields.io/badge/docs-stable-blue.svg
30
30
[ docs-stable-url ] : https://JuliaImages.github.io/ImageFiltering.jl/stable
31
31
[ docs-dev-img ] : https://img.shields.io/badge/docs-dev-blue.svg
32
- [ docs-dev-url ] : https://JuliaImages.github.io/ImageFiltering.jl/latest
32
+ [ docs-dev-url ] : https://JuliaImages.github.io/ImageFiltering.jl/dev
You can’t perform that action at this time.
0 commit comments