Skip to content

Commit

Permalink
doc_build.sh: fix 'deploy ssh key' step
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Apr 27, 2024
1 parent 681887d commit 1e7d09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/doc_build.yml
Expand Up @@ -105,7 +105,7 @@ jobs:
if: ${{ github.ref_name == 'master' && github.repository == 'OSGeo/gdal' }}
shell: bash -l {0}
run: |
mkdir /root/.ssh && echo "${{ secrets.SSH_KEY_DOCS }}" > /root/.ssh/id_rsa
mkdir -p /root/.ssh && echo "${{ secrets.SSH_KEY_DOCS }}" > /root/.ssh/id_rsa
chmod 700 /root/.ssh && chmod 600 /root/.ssh/id_rsa
ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts
eval `ssh-agent -s`
Expand Down

0 comments on commit 1e7d09e

Please sign in to comment.