There was an error while loading. Please reload this page.
1 parent 0a91505 commit a348b8cCopy full SHA for a348b8c
1 file changed
.github/workflows/publish-runtime.yml
@@ -39,6 +39,18 @@ jobs:
39
username: ${{ github.actor }}
40
password: ${{ secrets.GITHUB_TOKEN }}
41
42
+ - name: Materialize submodule git dirs for Docker
43
+ run: |
44
+ git submodule foreach --recursive '
45
+ if [ -f .git ]; then
46
+ gitdir=$(git rev-parse --git-dir)
47
+ rm .git
48
+ mkdir .git
49
+ cp -a "$gitdir"/. .git/
50
+ git --git-dir=.git config --unset core.worktree || true
51
+ fi
52
+ '
53
+
54
- name: Build and push runtime image
55
uses: docker/build-push-action@v6
56
with:
0 commit comments