From bb4d699b3cc42dccd7b889ff0aad243ad80e37a5 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 18 Nov 2023 20:02:22 +0000 Subject: [PATCH] Fix deploy (#676) --- .github/workflows/ci.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ef62acf..117cbec 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -99,14 +99,18 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Install build tools - run: | - python -m pip install build + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: 3.8 + - name: Install dependencies + run: + python -m pip install -U pip wheel setuptools build twine - name: Build dists run: | python -m build - name: Make Release - uses: aio-libs/create-release@v1 + uses: aio-libs/create-release@v1.6.6 with: changes_file: CHANGES.rst name: aiohttp-security