From 863801d00c45b0f2adb2b1fab620ab0dbe320881 Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sat, 26 Apr 2025 13:15:40 -0400 Subject: [PATCH] Fix issue where new package was not installed --- .github/workflows/test-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5