Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JRubics authored Aug 31, 2022
1 parent 88530b3 commit 0ccceb1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.12
uses: JRubics/poetry-publish@v1.13
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
```
Expand All @@ -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.12
uses: JRubics/poetry-publish@v1.13
with:
python_version: "3.7.1"
poetry_version: "==1.0.5" # (PIP version specifier syntax)
Expand All @@ -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.12
uses: JRubics/poetry-publish@v1.13
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
repository_name: "testpypi"
Expand All @@ -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.12
uses: JRubics/poetry-publish@v1.13
with:
repository_name: "foo"
repository_url: "https://foo.bar/simple/"
Expand All @@ -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.12
uses: JRubics/poetry-publish@v1.13
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
extra_build_dependency_packages: "capnproto libzmq3-dev"
Expand All @@ -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.12
uses: JRubics/poetry-publish@v1.13
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
plugins: "poetry-dynamic-versioning-plugin"
Expand All @@ -141,7 +141,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.12
uses: JRubics/poetry-publish@v1.13
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
```

0 comments on commit 0ccceb1

Please sign in to comment.