Skip to content

Commit 19f2991

Browse files
committed
After adding deploy key
1 parent 0388e11 commit 19f2991

File tree

15 files changed

+470
-24
lines changed

15 files changed

+470
-24
lines changed

.github\workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
matrix:
1616
version:
1717
#- '1.7'
18-
- '1.9'
18+
- '1.6'
19+
- '^1.6'
1920
# - 'nightly'
2021
os:
2122
- ubuntu-latest

.github\workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
- name: CompatHelper.main()
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15-
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY}}
1616
run: julia -e 'using CompatHelper; CompatHelper.main()'
1717

.github\workflows/TagBot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ jobs:
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
ssh: ${{ secrets.DOCUMENTER_KEY }}
16+

.github\workflows/document.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- main
6-
- dev_new
6+
# - dev_new
77
tags: ['*']
88
pull_request:
99
jobs:
@@ -12,12 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: julia-actions/setup-julia@v1
15-
with:
16-
version: '1.6'
1715
- uses: julia-actions/cache@v1
1816
- name: Install dependencies
19-
run: julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
20-
- name: Build and deploy
17+
run: julia --color=yes --project=d0cs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
18+
- name: Build and deploy
2119
env:
22-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
23-
run: julia --color=yes --project=docs/ docs/make.jl
20+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
21+
run: julia --color=yes --project=d0cs docs/make.jl

0 commit comments

Comments
 (0)