We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b4b3f commit 21c6bb1Copy full SHA for 21c6bb1
.github/workflows/publish.yml
@@ -9,9 +9,16 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v4
12
+
13
+ - name: Install poetry
14
+ run: |
15
+ sudo apt install -y pipx
16
+ pipx ensurepath
17
+ pipx install poetry
18
+ pipx inject poetry poetry-plugin-export
19
+ poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
20
- name: Build and publish to Python package repository
21
22
+ poetry build
23
+ poetry publish
24
uses: JRubics/[email protected]
- with:
- repository_name: "django_api_forms"
- repository_url: "https://github.com/Sibyx/django_api_forms"
- pypi_token: ${{ secrets.PYPI_TOKEN }}
0 commit comments