Skip to content

Commit

Permalink
fix: fetch dependencies via ssh in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hacheigriega committed Dec 11, 2023
1 parent 6c0a2fb commit 76a1de4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ jobs:
echo " login ${{ github.actor }}" >> ${GITHUB_WORKSPACE}/.netrc
echo " password ${{ secrets.GITHUB_TOKEN }}" >> ${GITHUB_WORKSPACE}/.netrc
chmod 600 ${GITHUB_WORKSPACE}/.netrc
# Now enforce that GitHub dependencies are fetched via SSH
- name: Enforce SSH
run: |
echo "[url \"ssh://[email protected]/\"]" > ~/.gitconfig
echo " insteadOf = https://github.com/" >> ~/.gitconfig
- name: Test e2e
run: |
make test-e2e

0 comments on commit 76a1de4

Please sign in to comment.