File tree 5 files changed +47
-45
lines changed
5 files changed +47
-45
lines changed Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
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
+ deploy_html :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Install Julia
17
+ run : |
18
+ pip install jill
19
+ jill install --confirm
20
+ - name : Install dependencies
21
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
22
+ - name : Build and deploy
23
+ env :
24
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
26
+ run : |
27
+ julia -e 'include("contrib/build_sysimg.jl"); build_sysimg(force=true)'
28
+ julia --project=doc/ doc/make.jl deploy
29
+ # build_pdf:
30
+ # runs-on: ubuntu-latest
31
+ # steps:
32
+ # - uses: actions/checkout@v2
33
+ # - name: Build and deploy
34
+ # uses: docker://tianjun2018/documenter-latex:latest
35
+ # run: |
36
+ # apt-get update -q && apt-get install python3-pip -yq
37
+ # pip3 install jill && jill install --confirm
38
+ # julia -e 'using InteractiveUtils; versioninfo()'
39
+ # ls -al
40
+ # julia --project=doc/ -e 'using Pkg; Pkg.develop(PacakageSpec(path=pwd())); Pkg.instantiate()'
41
+ # julia --project=doc/ doc/make.jl pdf texplatform=native
42
+
File renamed without changes.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments