diff --git a/.github/workflows/CD_staging.yml b/.github/workflows/CD_staging.yml index c39e37bc9..f72bd9d9c 100644 --- a/.github/workflows/CD_staging.yml +++ b/.github/workflows/CD_staging.yml @@ -26,7 +26,11 @@ jobs: - name: Generate requirements.txt run: | - uv export -o requirements.txt + uv export \ + --format requirements-txt \ + --no-emit-project \ + --no-dev \ + --output-file requirements.txt - name: Authenticate to Google Cloud uses: 'google-github-actions/auth@v2' diff --git a/cli/cli.py b/cli/cli.py index 94117dd78..50625434b 100644 --- a/cli/cli.py +++ b/cli/cli.py @@ -13,12 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +import click from dotenv import load_dotenv load_dotenv() -import click - @click.group() def cli():