-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
998d79c
commit 4231b4c
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,11 +38,10 @@ jobs: | |
run: | | ||
git config --global [email protected]:.insteadof https://github.com/ | ||
git config --global --add safe.directory `pwd` | ||
- name: configure ssh key | ||
- name: configure ssh agent | ||
run: | | ||
mkdir ~/.ssh | ||
echo "${{secrets.SSH_DEPLOY_KEY}}" > ~/.ssh/id_ed25519 | ||
chmod -R 700 ~/.ssh | ||
eval `ssh-agent -s` | ||
ssh-add - <<< '${{ secrets.SSH_DEPLOY_KEY }}' | ||
- name: install git submodules | ||
run: | | ||
|