From 3fc43367b9e452bd5ff142096d77bfc517c0fd2f Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 13 Jun 2026 20:12:02 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EC=8B=9C=EB=86=80=EB=A1=9C=EC=A7=80=20C?= =?UTF-8?q?I=20=EB=9F=AC=EB=84=88=EC=9D=98=20pip=20=EB=B6=80=EC=9E=AC=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0=20=EB=B0=8F=20--user=20?= =?UTF-8?q?=EC=98=81=EC=97=AD=20=EC=84=A4=EC=B9=98=20=EA=B5=AC=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c518006..870cb3a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -25,9 +25,16 @@ jobs: - name: Install Python Dependencies run: | - python3 -m pip install --upgrade pip --quiet - if [ -f requirements.txt ]; then pip3 install -r requirements.txt --quiet; fi - pip3 install yfinance pandas pyyaml openpyxl --quiet + if ! python3 -m pip --version >/dev/null 2>&1; then + curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py + python3 get-pip.py --user --quiet + rm get-pip.py + fi + export PATH=$HOME/.local/bin:$PATH + python3 -m pip install --upgrade pip --user --quiet + if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --user --quiet; fi + python3 -m pip install yfinance pandas pyyaml openpyxl --user --quiet + echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Install Node Dependencies run: npm install --quiet