Skip to content

Commit

Permalink
Maybe windows builds now
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom committed Oct 19, 2024
1 parent f050d99 commit 43a7cf5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,14 @@ jobs:

- name: Set up SSH
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KY }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh
mkdir -p ~/.ssh/ && touch ~/.ssh/known_hosts
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_host
ssh-keyscan github.com >> ~/.ssh/known_hosts
eval $(ssh-agent)
ssh-add - <<< "$SSH_PRIVATE_KEY"
git submodule update --init --recursive
- name: Configure and build
Expand Down

0 comments on commit 43a7cf5

Please sign in to comment.