From 54d4394fd9f38bf2240cdbbcd5d31a535abe0c37 Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Tue, 7 Apr 2020 16:53:29 -0700 Subject: [PATCH] release v0.1.18 --- .github/workflows/release.yml | 17 ++++++++++++++--- pkg/report/types.go | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) 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