File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 11name : CompatHelper
22on :
33 schedule :
4- - cron : ' 00 00 * * *'
4+ - cron : 0 0 * * *
55 workflow_dispatch :
66jobs :
77 CompatHelper :
88 runs-on : ubuntu-latest
99 steps :
10- - name : Pkg.add("CompatHelper")
11- run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12- - name : CompatHelper.main()
10+ - name : " Install CompatHelper"
11+ run : |
12+ import Pkg
13+ name = "CompatHelper"
14+ uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
15+ version = "2"
16+ Pkg.add(; name, uuid, version)
17+ shell : julia --color=yes {0}
18+ - name : " Run CompatHelper"
19+ run : |
20+ import CompatHelper
21+ CompatHelper.main()
22+ shell : julia --color=yes {0}
1323 env :
1424 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15- COMPATHELPER_PRIV : ${{ secrets.COMPATHELPER_PRIV }} # optional
16- run : julia -e 'using CompatHelper; CompatHelper.main()'
25+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments