We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fa1542 commit 4128c2dCopy full SHA for 4128c2d
1 file changed
.github/workflows/ci.yml
@@ -24,10 +24,13 @@ jobs:
24
username: ${{ github.actor }}
25
password: ${{ secrets.GITHUB_TOKEN }}
26
27
- - name: Create dummy SSH auth socket for devcontainer
+ - name: Create stub files required by devcontainer bind mounts
28
run: |
29
+ # SSH auth socket — no agent on CI runners
30
touch /tmp/ssh-agent.sock
31
echo "SSH_AUTH_SOCK=/tmp/ssh-agent.sock" >> $GITHUB_ENV
32
+ # git config — may not exist on a fresh runner
33
+ touch "${HOME}/.gitconfig"
34
35
- name: Compute lowercase image name
36
id: image_name
0 commit comments