We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413ce58 commit 2227ce5Copy full SHA for 2227ce5
.github/workflows/release.yml
@@ -56,6 +56,18 @@ 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
+ - uses: webfactory/ssh-agent@v0.9.0
60
+ with:
61
+ ssh-private-key: |
62
+ ${{ secrets.GITLAB_TIQI_ZEDBOARD_SSH_KEY }}
63
+ ${{ secrets.GITLAB_TIQI_RPC_SSH_KEY }}
64
+
65
+ - name: Add gitlab.phys.ethz.ch to known hosts
66
+ run: |
67
+ mkdir -p ~/.ssh
68
+ chmod 700 ~/.ssh
69
+ ssh-keyscan gitlab.phys.ethz.ch >> ~/.ssh/known_hosts
70
71
- name: Sync build dependencies
72
run: uv sync --group build
73
0 commit comments