From 860f096fcd06f636337e51d1792ef0bef4fb7bb4 Mon Sep 17 00:00:00 2001 From: Serene-Arc <33189705+Serene-Arc@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:15:17 +1000 Subject: [PATCH] Fix build bug in workflow --- .github/workflows/make_release.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/make_release.yaml b/.github/workflows/make_release.yaml index 96350643f..7157eb236 100644 --- a/.github/workflows/make_release.yaml +++ b/.github/workflows/make_release.yaml @@ -15,14 +15,11 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.x" - - name: Install pypa/build - run: >- - python3 -m - pip install - build - --user + python-version: "3.9" + - run: pip install build wheel sphinx - name: Build a binary wheel and a source tarball + env: + TZ: UTC run: python3 -m build - name: Store the distribution packages uses: actions/upload-artifact@v3