Skip to content

Commit

Permalink
Merge pull request #111 from wednesday-solutions/fix/cd-publish
Browse files Browse the repository at this point in the history
fix(cd-publish): fix publish commands in product-release.yml file
  • Loading branch information
praveenkumar1798 authored Aug 22, 2023
2 parents d028f43 + a5ea62a commit 546db0a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/product-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 546db0a

Please sign in to comment.