Skip to content

Commit

Permalink
Fixed sdist build in gh actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Oct 5, 2023
1 parent b760a3b commit 7e9efbd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Build and Publish Python Packages"

on:
push:
tags: "v[0-9]+.[0-9]+.[0-9]+"
tags: "v[0-9]+.[0-9]+.[0-9]+(-[0-9]+)?"

jobs:

Expand All @@ -23,6 +23,10 @@ jobs:
with:
python-version: "3.12"

- name: "Install python dependencies"
run: |
pip install setuptools
- name: "Build source distribution"
run: |
python setup.py sdist
Expand Down

0 comments on commit 7e9efbd

Please sign in to comment.