Skip to content

Commit e91bd27

Browse files
committed
Bumped version to 0.5.0
Signed-off-by: chandr-andr (Kiselev Aleksandr) <chandr@chandr.net>
1 parent d3f3aca commit e91bd27

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/release.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
13+
- name: Install poetry
14+
run: pipx install poetry
1315
- name: Set up Python
14-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1517
with:
16-
python-version: "3.9"
18+
python-version: "3.11"
1719
- name: Install deps
18-
uses: knowsuchagency/poetry-install@v1
19-
env:
20-
POETRY_VIRTUALENVS_CREATE: false
20+
run: poetry install
21+
- name: Set version
22+
run: poetry version "${{ github.ref_name }}"
2123
- name: Release package
2224
env:
2325
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)