We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3bf0871 + 3e33b12 commit d314df3Copy full SHA for d314df3
2 files changed
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release python package
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "*"
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Install poetry
14
+ run: pipx install poetry
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: "3.9"
19
+ - name: Install deps
20
+ run: poetry install
21
+ - name: Release package
22
+ env:
23
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
24
+ run: poetry publish --build
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "taskiq-dependencies"
-version = "0.1.0"
+version = "1.0.0"
description = "FastAPI like dependency injection implementation"
authors = ["Pavel Kirilin <win10@list.ru>"]
readme = "README.md"
0 commit comments