diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 78d2cbd..5849b8c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,3 +23,13 @@ jobs: - name: Build run: go build -v ./... + + - name: Go Release Binaries + uses: softprops/action-gh-release@v1 + with: + token: ${{ secrets.TOKEN }} + release_name: ${{ github.event.head_commit.message }} + tag: ${{ github.ref }} + body: ${{ github.event.head_commit.message }} + draft: false + prerelease: false diff --git a/config/config.go b/config/config.go index 542f013..d08062a 100644 --- a/config/config.go +++ b/config/config.go @@ -10,7 +10,7 @@ var home, _ = os.UserHomeDir() var ( NAME = "scan2epub" - VERSION = "0.0.1" + VERSION = "0.1.0" USAGE = "CLI tool to convert scan to epub" CONFIG_DIR = home + "/.config/scan2epub" CONFIG_FILE = CONFIG_DIR + "/config"