Skip to content

Commit

Permalink
+17
Browse files Browse the repository at this point in the history
  • Loading branch information
SunSerega committed Aug 16, 2024
1 parent 5cd2ded commit f41cccf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/upstream pretest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ jobs:
Write-Host "UserName: $env:UserName"
Write-Host "UserProfile: $env:UserProfile"
Write-Host "ssh-add:" (where.exe ssh-add)
# Set Key File Variable:
New-Variable -Name Key -Value "$env:UserProfile\.ssh\id_rsa"
$ssh_key = '${{ secrets.SSH_KEY }}'
New-Item -ItemType Directory -Path (Split-Path $Key)
New-Item -ItemType Directory -Path (Split-Path $Key) | Out-Null
$ssh_key | Set-Content $Key
# Remove Inheritance:
Expand Down

0 comments on commit f41cccf

Please sign in to comment.