We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67758c8 commit 9b15ea6Copy full SHA for 9b15ea6
.github/workflows/Documenter.yml
@@ -11,7 +11,19 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v2
14
+ - name: Setup SSH Keys and known_hosts
15
+ env:
16
+ SSH_AUTH_SOCK: /tmp/ssh_agent.sock
17
+ run: |
18
+ mkdir -p ~/.ssh
19
+ ssh-keyscan github.com >> ~/.ssh/known_hosts
20
+ ssh-agent -a $SSH_AUTH_SOCK > /dev/null
21
+ ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
22
+ - name: registry_add
23
+ run: julia -e 'using Pkg; pkg"registry add General https://github.com/HolyLab/HolyLabRegistry.git"'
24
- uses: julia-actions/julia-buildpkg@latest
25
26
27
- uses: julia-actions/julia-docdeploy@latest
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments