diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 769d4ce..d04fa08 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,6 +16,8 @@ jobs: with: path: ~/.cache/pypoetry/virtualenvs key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} + - run: | + poetry self add poetry-version-plugin - uses: bahmutov/npm-install@v1 - run: npx semantic-release env: diff --git a/pyproject.toml b/pyproject.toml index 51e4a03..88af7a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyKLI" -version = "1.1.1" +version = "0" description = "Interactive ksqlDB command line client with autocompletion and syntax highlighting" license = "MIT" authors = ["Ievgenii Shepeliuk "] @@ -39,3 +39,6 @@ line-length = 140 markers = [ "e2e: e2e tests", ] + +[tool.poetry-version-plugin] +source = "git-tag"