From aee2bad4e5d0bc10a9ad9d31f7faa2aab3c94421 Mon Sep 17 00:00:00 2001 From: Mark Adams Date: Thu, 14 Nov 2024 13:14:39 -0600 Subject: [PATCH] Fix publishing workflow --- .github/workflows/publish.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1ee2fbc..baca3c6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,5 +17,16 @@ jobs: permissions: id-token: write steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + - name: Build package + run: python -m build - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc \ No newline at end of file