From 392a975785d94f21cd9f233b884e057d591838df Mon Sep 17 00:00:00 2001 From: sohalt Date: Fri, 1 Mar 2024 23:50:04 +0100 Subject: [PATCH] . --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9913dad..14a2619 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,20 +30,20 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Install dependencies run: | - pip install -U setuptools wheel + pip install build - name: Build run: | cd src - python setup.py sdist bdist_wheel + python -m build - uses: actions/upload-artifact@v4 with: name: dist - path: dist + path: src/dist release: name: Create Release runs-on: ubuntu-latest