From 5f93c99f8c5fc6615561342175af42638ac1ceb0 Mon Sep 17 00:00:00 2001 From: Srinivas Edireswarapu - I17752 Date: Tue, 8 Oct 2024 11:15:28 +0530 Subject: [PATCH] Added step for installing build tools --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14d66ed4..86db6ea9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,6 +67,12 @@ jobs: with: python-version: '3.x' + # Install build tools (setuptools, wheel, and build) + - name: Install build tools + run: | + python -m pip install --upgrade pip + pip install setuptools wheel build + - name: Describe Tag & Branch Name id: build_names run: |