From: Chris Fulljames Date: Sat, 26 Apr 2025 17:15:40 +0000 (-0400) Subject: Fix issue where new package was not installed X-Git-Url: https://littlesong.place/gitweb/?a=commitdiff_plain;h=863801d00c45b0f2adb2b1fab620ab0dbe320881;p=littlesongplace.git Fix issue where new package was not installed --- diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 70a2dd7..1d5825b 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -75,7 +75,7 @@ jobs: . venv/bin/activate # Install package, remove wheel - pip install ./*.whl + pip install --ignore-installed ./*.whl # Restart service sudo systemctl restart littlesongplace-test.service @@ -159,7 +159,7 @@ jobs: cd /var/www/littlesongplace python3 -m venv venv . venv/bin/activate - pip install *.whl + pip install --ignore-installed *.whl # Restart service sudo systemctl restart littlesongplace.service