From f639584f46dad1e69fd961a16f29506a05bd1ba4 Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Thu, 29 Dec 2022 10:21:30 +0800 Subject: [PATCH] fix: name wrong --- .github/workflows/nuitka.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuitka.yml b/.github/workflows/nuitka.yml index 02d74b5..988d222 100644 --- a/.github/workflows/nuitka.yml +++ b/.github/workflows/nuitka.yml @@ -32,11 +32,11 @@ jobs: python-version: '3.8' # 为了支持 win7 我还是得用 3.8 architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified cache: 'pip' - cache-dependency-path: '**/requirements*.txt' + cache-dependency-path: '**/requirement*.txt' # 安装依赖 - name: Install env - run: pip install -r requirements.txt + run: pip install -r requirement.txt # Build python script into a stand-alone exe