diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30655b1..d22e008 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,9 +53,20 @@ jobs: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} body: | - Changes in this Release - - First Change - - Second Change + ## Install on Linux + + ``` + curl -LO https://github.com/medyagh/gopogh/releases/download/${{ github.ref }}/gopogh-darwin-amd64 && sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh + ``` + + ## Install on MacOS + ``` + curl -LO https://github.com/medyagh/gopogh/releases/download/${{ github.ref }}/gopogh-linux-amd64 && sudo install gopogh-linux-amd64 /usr/local/bin/gopogh + ``` + + ## Windows + + https://github.com/medyagh/gopogh/releases/download/${{ github.ref }}/gopogh.exe draft: false prerelease: false - name : upload linux assets diff --git a/pkg/report/types.go b/pkg/report/types.go index dec8b81..ca50a8b 100644 --- a/pkg/report/types.go +++ b/pkg/report/types.go @@ -1,7 +1,7 @@ package report // Version is gopogh version -const Version = "v0.1.17" +const Version = "v0.1.18" // Build includes commit sha date var Build string