From 3418f2fa180027a1149d64aa91ec8b593ec09c95 Mon Sep 17 00:00:00 2001 From: Robert Rossmann Date: Tue, 20 Feb 2024 21:58:26 +0100 Subject: [PATCH] chore: move GOPROXY to env --- .github/workflows/release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 671f7ad..695b52f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,4 +18,6 @@ jobs: - run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: GOPROXY=proxy.golang.org go list -m github.com/robertrossmann/background@$(git describe --tags --abbrev=0) + - run: go list -m github.com/robertrossmann/background@$(git describe --tags --abbrev=0) + env: + GOPROXY: proxy.golang.org