Skip to content

Commit 4da2f5b

Browse files
authored
Add SSH key for all relevant workflows (#97)
* Add basic gitignore file * Add DOCUMENTER_KEY to all relevant workflows
1 parent 0aa93e0 commit 4da2f5b

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/CompatHelper.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Pkg.add("CompatHelper")
1111
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
1212
- name: CompatHelper.main()
13+
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "bench", "test", "docs"])'
1314
env:
1415
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15-
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
16-
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "bench", "test", "docs"])'
16+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/Documentation.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- uses: julia-actions/julia-docdeploy@v1
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
3233
- name: Run doctests
3334
shell: julia --project=docs --color=yes {0}
3435
run: |

.github/workflows/TagBot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
- uses: JuliaRegistries/TagBot@v1
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
15-
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.swp
2+
.vscode/
3+
docs/build/
4+
.DS_Store
5+
Manifest.toml

0 commit comments

Comments
 (0)