Skip to content

Commit 6790dd7

Browse files
authored
ci: apply safe.directory workaround for github checkout action
1 parent 5a62662 commit 6790dd7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v3.5.2
13-
13+
14+
#workaround for the github checkout not fully working right with containers
15+
#see : https://github.com/actions/checkout/issues/2031
16+
- name: Add git safe directory
17+
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
18+
1419
- name: Build
1520
run: |
1621
make -j2

0 commit comments

Comments
 (0)