From 265c65b58fb055e226b2075bf7d7c9a60269af0a Mon Sep 17 00:00:00 2001 From: syjn99 Date: Sat, 7 Sep 2024 14:23:15 +0900 Subject: [PATCH] Add git config to get workspace status --- .github/workflows/_build-bazel.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_build-bazel.yml b/.github/workflows/_build-bazel.yml index 945ccf968..9453e3105 100644 --- a/.github/workflows/_build-bazel.yml +++ b/.github/workflows/_build-bazel.yml @@ -20,10 +20,13 @@ jobs: image: overfoundation/bazel-cross:latest steps: - uses: actions/checkout@v3 + - name: Git config + run: | + git config --global --add safe.directory /__w/chronos/chronos + - name: Build ${{ inputs.build-type }} run: | bazel build \ - --workspace_status_command=./hack/workspace_status.sh \ # Stamp binaries with git information --config=release \ --config=${{ inputs.build-type }} \ //cmd/beacon-chain \