Skip to content

Commit

Permalink
clear cache before deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leao authored and Eduardo Leao committed Feb 28, 2024
1 parent 1b38749 commit 06c8978
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Clear previous deployment files # delete repos w/ old deployment
run: |
rm -r build
rm -r dist
rm -r neuralforge.egg-info
- name: Build and publish # run setup.py to build publishing files, and publish to PyPI using TWINE
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down

0 comments on commit 06c8978

Please sign in to comment.