From a5ea62a5fd726f776ee1589f3e1ca5a7541ed124 Mon Sep 17 00:00:00 2001 From: Ijas Mohamad <114065489+ijas-ws@users.noreply.github.com> Date: Tue, 22 Aug 2023 19:23:35 +0530 Subject: [PATCH] fix(product release): fix publish commands --- .github/workflows/product-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/product-release.yml b/.github/workflows/product-release.yml index 5f96df2..363a225 100644 --- a/.github/workflows/product-release.yml +++ b/.github/workflows/product-release.yml @@ -95,7 +95,10 @@ jobs: echo "New version: $VERSION" PKG="github.com/wednesday-solutions/picky@$VERSION" echo "New package version: $PKG" - GOPROXY=proxy.golang.org go list -m $PKG + # GOPROXY=proxy.golang.org go list -m $PKG + LIST=$(go list -m $PKG) + echo "Go list: $LIST" + GOPROXY=proxy.golang.org $LIST - name: Create Product Release uses: actions/create-release@latest