We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7428944 + ba7a541 commit d230604Copy full SHA for d230604
2 files changed
.github/workflows/CD_staging.yml
@@ -26,7 +26,11 @@ jobs:
26
27
- name: Generate requirements.txt
28
run: |
29
- uv export -o requirements.txt
+ uv export \
30
+ --format requirements-txt \
31
+ --no-emit-project \
32
+ --no-dev \
33
+ --output-file requirements.txt
34
35
- name: Authenticate to Google Cloud
36
uses: 'google-github-actions/auth@v2'
cli/cli.py
@@ -13,12 +13,11 @@
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15
# ===============================================================================
16
+import click
17
from dotenv import load_dotenv
18
19
load_dotenv()
20
-import click
21
-
22
23
@click.group()
24
def cli():
0 commit comments