Skip to content

Commit bb4d699

Browse files
Fix deploy (#676)
1 parent a935a05 commit bb4d699

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,18 @@ jobs:
9999
steps:
100100
- name: Checkout
101101
uses: actions/checkout@v4
102-
- name: Install build tools
103-
run: |
104-
python -m pip install build
102+
- name: Setup Python
103+
uses: actions/setup-python@v4
104+
with:
105+
python-version: 3.8
106+
- name: Install dependencies
107+
run:
108+
python -m pip install -U pip wheel setuptools build twine
105109
- name: Build dists
106110
run: |
107111
python -m build
108112
- name: Make Release
109-
uses: aio-libs/create-release@v1
113+
uses: aio-libs/create-release@v1.6.6
110114
with:
111115
changes_file: CHANGES.rst
112116
name: aiohttp-security

0 commit comments

Comments
 (0)