From cba154a3a37bea69aebe5d863c731f4dfe1d493d Mon Sep 17 00:00:00 2001 From: hoangvv Date: Tue, 14 Jan 2025 18:28:29 +0700 Subject: [PATCH] update --- .gitea/workflows/setup_native.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/setup_native.yml b/.gitea/workflows/setup_native.yml index 26e39a661..90cd57a70 100644 --- a/.gitea/workflows/setup_native.yml +++ b/.gitea/workflows/setup_native.yml @@ -27,7 +27,7 @@ jobs: eval "$(pyenv virtualenv-init -)" pyenv virtualenv ${{ matrix.python }} "${{ github.ref_name }}-$(git rev-parse --short "$GITHUB_SHA")" - - name: Activate Virtual Environment + - name: Activate Virtual Environment And Setup run: | export PATH="$HOME/.pyenv/bin:$PATH" eval "$(pyenv init --path)" @@ -35,12 +35,8 @@ jobs: eval "$(pyenv virtualenv-init -)" pyenv activate "${{ github.ref_name }}-$(git rev-parse --short "$GITHUB_SHA")" python --version # Confirm Python version - - - name: Install dotenv - run: pip install python-dotenv --break-system-packages - - - name: Setup - run: make install + pip install python-dotenv + pip install --no-input -r requirements.txt - name: Generate Config run: make gen_config