Skip to content

Commit 4128c2d

Browse files
committed
Create stub files required by devcontainer bind mounts
1 parent 5fa1542 commit 4128c2d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ jobs:
2424
username: ${{ github.actor }}
2525
password: ${{ secrets.GITHUB_TOKEN }}
2626

27-
- name: Create dummy SSH auth socket for devcontainer
27+
- name: Create stub files required by devcontainer bind mounts
2828
run: |
29+
# SSH auth socket — no agent on CI runners
2930
touch /tmp/ssh-agent.sock
3031
echo "SSH_AUTH_SOCK=/tmp/ssh-agent.sock" >> $GITHUB_ENV
32+
# git config — may not exist on a fresh runner
33+
touch "${HOME}/.gitconfig"
3134
3235
- name: Compute lowercase image name
3336
id: image_name

0 commit comments

Comments
 (0)