Skip to content

Commit

Permalink
Fix CICD pipeline for dist building due to a weird Ubuntu bug with se…
Browse files Browse the repository at this point in the history
…tuptools version
  • Loading branch information
Jonas Marcello committed Aug 11, 2023
1 parent c412abe commit 10f0374
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ jobs:
- name: Build project
id: build_package
run: |
sudo apt purge python3-setuptools
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install sdist wheel
python3 -m pip install -Uv setuptools==62.1.0
python setup.py sdist bdist_wheel
TARNAME=$(ls -1 dist/pyhpo*.tar.gz | head -n 1)
echo "::set-output name=tar_filename::$TARNAME"
Expand Down

0 comments on commit 10f0374

Please sign in to comment.