File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 - uses : JuliaRegistries/TagBot@v1
1010 with :
1111 token : ${{ secrets.GITHUB_TOKEN }}
12+ ssh : ${{ secrets.TAGBOT }}
Original file line number Diff line number Diff line change 4141 - name : " Unit Test"
4242 uses : julia-actions/julia-runtest@master
4343
44- # Unless tokenless upload is enabled, we can only submit coverage via
45- # environment variable. But PRs from other fork can't do that.
46- # See issue: https://github.com/julia-actions/julia-uploadcodecov/issues/1
44+ - uses : julia-actions/julia-processcoverage@v1
45+ - uses : codecov/codecov-action@v1
46+ with :
47+ file : lcov.info
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+ release :
11+ types : [published]
12+
13+ jobs :
14+ build :
15+ runs-on : ${{ matrix.os }}
16+ strategy :
17+ matrix :
18+ julia-version : [1]
19+ os : [ubuntu-latest]
20+ steps :
21+ - uses : actions/checkout@v2
22+ - uses : julia-actions/setup-julia@latest
23+ with :
24+ version : ${{ matrix.julia-version }}
25+ - name : Cache artifacts
26+ uses : actions/cache@v1
27+ env :
28+ cache-name : cache-artifacts
29+ with :
30+ path : ~/.julia/artifacts
31+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
32+ restore-keys : |
33+ ${{ runner.os }}-test-${{ env.cache-name }}-
34+ ${{ runner.os }}-test-
35+ ${{ runner.os }}-
36+ - name : Install dependencies
37+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
38+ - name : Build and deploy
39+ env :
40+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41+ run : julia --project=docs/ docs/make.jl
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments