We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d983cbe commit 4843634Copy full SHA for 4843634
1 file changed
.github/workflows/deploy.yml
@@ -146,6 +146,7 @@ jobs:
146
echo "🐍 Setting up Python backend..."
147
if ! command -v uv &> /dev/null; then
148
curl -LsSf https://astral.sh/uv/install.sh | sh
149
+ export PATH="\$HOME/.cargo/bin:\$PATH"
150
fi
151
uv venv
152
source .venv/bin/activate
@@ -441,13 +442,12 @@ jobs:
441
442
443
# Backend setup
444
- if [ -d .venv ]; then
445
- source .venv/bin/activate
446
- else
447
- python3 -m venv .venv
448
+ if ! command -v uv &> /dev/null; then
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ export PATH="$HOME/.cargo/bin:$PATH"
449
450
- pip install --quiet uv
+ uv venv
+ source .venv/bin/activate
451
uv sync --no-dev
452
453
# Frontend setup (production build)
0 commit comments