Skip to content

Commit

Permalink
fix ssh for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jpihl committed May 7, 2021
1 parent 1dbbd85 commit 2a63a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
uses: actions/checkout@v2
- name: Configure
env:
GIT_SSH_COMMAND: "${{ runner.os == 'Linux' && 'ssh -i /home/buildbot/.ssh/id_ed25519 -o IdentitiesOnly=yes' || '' }}"
GIT_SSH_COMMAND: "${{ runner.os != 'Linux' && 'ssh' || 'ssh -i /home/buildbot/.ssh/id_ed25519 -o IdentitiesOnly=yes' }}"
run: ${{ env.python }} waf configure --git_protocol=git@ --cxx_mkspec=${{ matrix.config.cxx_mkspec }}
- name: Build
run: |
Expand Down

0 comments on commit 2a63a25

Please sign in to comment.