Skip to content

Commit

Permalink
I forgot to actually change stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom committed Oct 19, 2024
1 parent 66eeb42 commit 7d692dc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh/ && touch ~/.ssh/known_hosts
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
mkdir -p ~/.ssh
echo $env:SSH_PRIVATE_KEY | Out-File -Encoding ascii ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts
eval $(ssh-agent)
ssh-add - <<< "$SSH_PRIVATE_KEY"
ssh-keyscan github.com | Out-File -Append ~/.ssh/known_hosts
Start-Process ssh-agent -Wait
& ssh-add ~/.ssh/id_ed25519
git submodule update --init --recursive
- name: Configure and build
Expand Down

0 comments on commit 7d692dc

Please sign in to comment.