From 54bd6c8dc1fb8f7c27dbdf8361936ee16471936a Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 1 Nov 2021 19:39:14 +0200 Subject: [PATCH] Fix build process --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e51ed54f8..8bcdff398 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -229,6 +229,11 @@ jobs: - name: Login run: | echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token + - name: Download disctributions + uses: actions/download-artifact@v2 + with: + name: dist + path: dist - name: Make Release uses: aio-libs/create-release@v1.2.2 with: @@ -237,6 +242,6 @@ jobs: version_file: yarl/__init__.py github_token: ${{ secrets.GITHUB_TOKEN }} pypi_token: ${{ secrets.PYPI_API_TOKEN }} - artifact: dist + dist_dir: dist fix_issue_regex: "`#(\\d+) `" fix_issue_repl: "(#\\1)"