diff options
Diffstat (limited to '.github/workflows/daemon.yml')
| -rw-r--r-- | .github/workflows/daemon.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml index 2300169679..6e054dbd0d 100644 --- a/.github/workflows/daemon.yml +++ b/.github/workflows/daemon.yml @@ -69,7 +69,9 @@ jobs: uses: actions/checkout@v3 - name: Checkout binaries submodule - run: git submodule update --init --depth=1 dist-assets/binaries + run: | + git config --global --add safe.directory '*' + git submodule update --init --depth=1 dist-assets/binaries # The container image already has rustup and Rust, but only the stable toolchain - name: Install Rust toolchain |
