We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413ce58 commit 5d8d1ddCopy full SHA for 5d8d1dd
.github/workflows/release.yml
@@ -56,6 +56,13 @@ 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 for GitLab
60
+ run: |
61
+ mkdir -p ~/.ssh
62
+ echo "${{ secrets.GITLAB_SSH_KEY }}" > ~/.ssh/id_ed25519
63
+ chmod 600 ~/.ssh/id_ed25519
64
+ ssh-keyscan gitlab.phys.ethz.ch >> ~/.ssh/known_hosts
65
+
66
- name: Sync build dependencies
67
run: uv sync --group build
68
0 commit comments