diff --git a/README.md b/README.md index a482255..6613148 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The following will build and publish the python package using the last version o ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.7 + uses: JRubics/poetry-publish@v1.8 with: pypi_token: ${{ secrets.PYPI_TOKEN }} ``` @@ -53,7 +53,7 @@ to publish to. ```yaml - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.7 + uses: JRubics/poetry-publish@v1.8 with: python_version: "3.7.1" poetry_version: "==1.0.5" # (PIP version specifier syntax) @@ -80,7 +80,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.7 + uses: JRubics/poetry-publish@v1.8 with: pypi_token: ${{ secrets.PYPI_TOKEN }} ``` diff --git a/action.yml b/action.yml index adb33a4..3c8e2b1 100644 --- a/action.yml +++ b/action.yml @@ -33,7 +33,7 @@ inputs: required: false runs: using: "docker" - image: "docker://jrubics/poetry-publish:v1.7" + image: "docker://jrubics/poetry-publish:v1.8" args: - ${{ inputs.python_version }} - ${{ inputs.poetry_version }}