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.
2 parents bf8b8e4 + 28fc049 commit c7ef231Copy full SHA for c7ef231
.github/workflows/release.yml
@@ -1,9 +1,9 @@
1
name: Release python package
2
3
on:
4
- push:
5
- tags:
6
- - "*"
+ release:
+ types:
+ - released
7
8
jobs:
9
deploy:
@@ -18,6 +18,8 @@ jobs:
18
python-version: "3.9"
19
- name: Install deps
20
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 }}
pyproject.toml
@@ -3,7 +3,7 @@ name = "aiohttp-deps"
description = "Dependency injection for AioHTTP"
authors = ["Taskiq team <taskiq@no-reply.com>"]
maintainers = ["Taskiq team <taskiq@no-reply.com>"]
-version = "1.1.2"
+version = "0.0.0"
readme = "README.md"
license = "LICENSE"
classifiers = [
0 commit comments