Skip to content

Commit

Permalink
Add Python setup and clean build directories in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Maralai committed Feb 1, 2025
1 parent 992e2d8 commit c818f0e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'

- name: Clean build directories
run: |
rm -rf build/
rm -rf dist/
rm -rf *.egg-info/
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit c818f0e

Please sign in to comment.