From 10d3cb80e5ee66e55d04e10a20ba9742a68188ab Mon Sep 17 00:00:00 2001 From: leynier Date: Thu, 3 Dec 2020 23:32:26 -0500 Subject: [PATCH] Set version v0.1.2 --- .github/workflows/publish.yml | 14 +++++++------- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1d4e62f..983c594 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,17 +18,17 @@ jobs: - name: Run tests run: make tests - name: Run build - run: poetry build -f wheel + run: poetry build - name: Publish in GitHub Releases uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: dist/*.whl + file: dist/* tag: ${{ github.ref }} overwrite: true file_glob: true - - name: Publish in PyPI - uses: d1618033/gh-action-python-publish-using-poetry@master - with: - pypi_username: ${{ secrets.PYPI_USERNAME }} - pypi_password: ${{ secrets.PYPI_PASSWORD }} + # - name: Publish in PyPI + # uses: d1618033/gh-action-python-publish-using-poetry@master + # with: + # pypi_username: ${{ secrets.PYPI_USERNAME }} + # pypi_password: ${{ secrets.PYPI_PASSWORD }} diff --git a/pyproject.toml b/pyproject.toml index 4ab0f45..9398dd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "template" -version = "0.1.1" +version = "0.1.2" description = "Python template with CI/CD ready for production" authors = ["leynier "] homepage = "https://github.com/leynier/python-template"