From 766b6121e18788c28f50a84dc37c239851a66360 Mon Sep 17 00:00:00 2001 From: Lukasz Antoniak Date: Tue, 11 Jun 2024 16:15:20 +0200 Subject: [PATCH] Set safe workspace for git --- .github/workflows/release-binary.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-binary.yml b/.github/workflows/release-binary.yml index 4f05bea..591ff34 100644 --- a/.github/workflows/release-binary.yml +++ b/.github/workflows/release-binary.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 + - name: Set workspace as safe + run: git config --global --add safe.directory $GITHUB_WORKSPACE - name: Build Linux/amd64 binary run: | export GO111MODULE=on