We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413ce58 commit 6498233Copy full SHA for 6498233
.github/workflows/release.yml
@@ -56,6 +56,16 @@ jobs:
56
irm https://astral.sh/uv/install.ps1 | iex
57
echo "$env:USERPROFILE\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
58
59
+ - name: Configure SSH manually
60
+ run: |
61
+ mkdir -p ~/.ssh
62
+ chmod 700 ~/.ssh
63
+ cat > ~/.ssh/id_ed25519 <<'EOF'
64
+ ${{ secrets.GITLAB_SSH_KEY }}
65
+ EOF
66
+ chmod 600 ~/.ssh/id_ed25519
67
+ ssh-keyscan gitlab.phys.ethz.ch >> ~/.ssh/known_hosts
68
+
69
- name: Sync build dependencies
70
run: uv sync --group build
71
0 commit comments