From 1d32416924205fa09363d52dc536d843eb2c7909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=CE=94BL=C3=98=20=E1=84=83=CE=9E?= Date: Mon, 13 May 2024 16:05:57 -0500 Subject: [PATCH] fix: add missing build pkg --- .github/workflows/python-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 6cd20ca..3a4c034 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -37,6 +37,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.11' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build - name: Build package run: python -m build - name: Publish package