From 71fc548b2d282f82f2f08cf09ebafdb53caefb69 Mon Sep 17 00:00:00 2001 From: berlin4apk <83521068+berlin4apk@users.noreply.github.com> Date: Tue, 16 May 2023 18:03:51 +0200 Subject: [PATCH] cli/gh-extension-precompile env: CGO_ENABLED: 0 (#62) set env: CGO_ENABLED: 0 for cli/gh-extension-precompile should fix https://github.com/actions/gh-actions-cache/issues/56 --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6dd256..8118cfa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,5 +37,7 @@ jobs: GH_TOKEN: dummy-token-to-facilitate-rest-client - uses: cli/gh-extension-precompile@v1 + env: + CGO_ENABLED: 0 with: - go_version: "1.18" \ No newline at end of file + go_version: "1.18"