We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 93fe06f + 3486e66 commit ad24baaCopy full SHA for ad24baa
.github/workflows/cd.yml
@@ -8,10 +8,18 @@ jobs:
8
deploy:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
12
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ - name: Set up Python
13
+ uses: actions/setup-python@v3
14
+ with:
15
+ python-version: '3.9'
16
+ - name: Install dependencies
17
+ run: |
18
+ python -m pip install --upgrade pip
19
+ pip install build
20
+ - name: Build package
21
+ run: python -m build
22
- name: Build and publish to pypi
- uses: JRubics/poetry-publish@v1.17
23
+ uses: pypa/gh-action-pypi-publish@release/v1
24
with:
- pypi_token: ${{ secrets.PROD_PYPI}}
- plugins: "poetry-dynamic-versioning[plugin]"
25
+ password: ${{ secrets.PROD_PYPI}}
0 commit comments