We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f3aca commit e91bd27Copy full SHA for e91bd27
.github/workflows/release.yaml
@@ -9,15 +9,17 @@ jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
13
+ - name: Install poetry
14
+ run: pipx install poetry
15
- name: Set up Python
- uses: actions/setup-python@v2
16
+ uses: actions/setup-python@v4
17
with:
- python-version: "3.9"
18
+ python-version: "3.11"
19
- name: Install deps
- uses: knowsuchagency/poetry-install@v1
- env:
20
- POETRY_VIRTUALENVS_CREATE: false
+ run: poetry install
21
+ - name: Set version
22
+ run: poetry version "${{ github.ref_name }}"
23
- name: Release package
24
env:
25
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
0 commit comments