From 136f0c1ce68e522876153b7f9129a68efa805787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Dywicki?= Date: Mon, 20 Nov 2023 18:01:26 +0100 Subject: [PATCH] Additional tracing for release execution. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ɓukasz Dywicki --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da423ce..fb93247 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,10 @@ jobs: run: | git config user.email "ci@connectorio.com" git config user.name "ConnectorIO Bot" - git config --global url."https://${BUILD_USER}:${BUILD_TOKEN}@github.com/".insteadOf "git@github.com:" + git config url."https://${BUILD_USER}:${BUILD_TOKEN}@github.com/".insteadOf "git@github.com:" + export GIT_TRACE_PACKET=1 + export GIT_TRACE=1 + export GIT_CURL_VERBOSE=1 env: BUILD_USER: x-access-token BUILD_TOKEN: ${{ secrets.GITHUB_TOKEN }}