diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index f2616582..4712192e 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -27,7 +27,7 @@ jobs: - name: Get the version id: get_version - run: echo ::set-output name=VERSION::$(go run pkg/util/version.go) + run: echo ::set-output name=VERSION::$(go run pkg/util/version/version.go) - name: Create Release id: create_release diff --git a/pkg/util/version/version.go b/pkg/util/version/version.go index 7d18c324..f7a996b5 100644 --- a/pkg/util/version/version.go +++ b/pkg/util/version/version.go @@ -14,7 +14,7 @@ package version -var version = "v0.1.1-alpha.2" +var version = "v0.1.1" func Full() string { return version