From 2be47acfecfeeaccbd22fe590ccd87bc065fac87 Mon Sep 17 00:00:00 2001 From: Jelena Dokic Date: Thu, 17 Nov 2022 13:14:25 +0100 Subject: [PATCH] Update pyenv version --- README.md | 14 +++++++------- action.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c9862d8..648bead 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The following will build and publish the python package to the PyPI using the la ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: pypi_token: ${{ secrets.PYPI_TOKEN }} ``` @@ -72,7 +72,7 @@ Python and poetry versions can be specified in inputs as well as the build_forma ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: python_version: "3.7.1" poetry_version: "==1.0.5" # (PIP version specifier syntax) @@ -86,7 +86,7 @@ Repository can be changed to TestPyPI or a private wheels repo by specifying rep ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: pypi_token: ${{ secrets.PYPI_TOKEN }} repository_name: "testpypi" @@ -97,7 +97,7 @@ Repository authentication can be cahnged to http-basic authentification by speci ```yaml - name: Build and publish to private Python package repository - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: repository_name: "foo" repository_url: "https://foo.bar/simple/" @@ -109,7 +109,7 @@ Extra debian packages can be installed before building the python package. This ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: pypi_token: ${{ secrets.PYPI_TOKEN }} extra_build_dependency_packages: "capnproto libzmq3-dev" @@ -119,7 +119,7 @@ Poetry plugins can be added by specifying plugins input ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: pypi_token: ${{ secrets.PYPI_TOKEN }} plugins: "poetry-dynamic-versioning-plugin" @@ -141,7 +141,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.13 + uses: JRubics/poetry-publish@v1.14 with: pypi_token: ${{ secrets.PYPI_TOKEN }} ``` diff --git a/action.yml b/action.yml index af934bb..4706e0c 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ inputs: required: false runs: using: "docker" - image: "docker://jrubics/poetry-publish:v1.13" + image: "docker://jrubics/poetry-publish:v1.14" args: - ${{ inputs.python_version }} - ${{ inputs.poetry_version }}