]> littlesong.place Git - littlesongplace.git/commitdiff
Fix issue where new package was not installed
authorChris Fulljames <christianfulljames@gmail.com>
Sat, 26 Apr 2025 17:15:40 +0000 (13:15 -0400)
committerChris Fulljames <christianfulljames@gmail.com>
Sat, 26 Apr 2025 17:15:40 +0000 (13:15 -0400)
.github/workflows/test-and-deploy.yml

index 70a2dd78fdb05cce11c68f3083f6555febc9856d..1d5825b15286ac7f23469b1bb5419fb9a55fe1fc 100644 (file)
@@ -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