From 723da7640eecc76704e1f7e793a530f67d995116 Mon Sep 17 00:00:00 2001 From: imgyh <1974355683@qq.com> Date: Sat, 11 Mar 2023 20:44:49 +0800 Subject: [PATCH] =?UTF-8?q?ci(pyinstaller):=20=E5=A2=9E=E5=8A=A0TikTokWeb?= =?UTF-8?q?=E6=89=93=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pyinstaller.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml index b02b2b3..1d8fc48 100644 --- a/.github/workflows/pyinstaller.yml +++ b/.github/workflows/pyinstaller.yml @@ -29,6 +29,7 @@ jobs: python -m pip install --upgrade pip python -m pip install -r requirements.txt pyinstaller -i ./static/img/favicon.ico -F TikTokCommand.py --add-data "X-Bogus.js;." + pyinstaller -i ./static/img/favicon.ico -F TikTokWeb.py --add-data "X-Bogus.js;." --add-data "templates;templates" - name: Create Release and Upload Release Asset uses: softprops/action-gh-release@v1 @@ -46,5 +47,6 @@ jobs: # 如果指定了正文,正文将被添加到自动生成的注释中。 files: | # 多个文件要加 | dist/TikTokCommand.exe + dist/TikTokWeb.exe env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # 默认为${{ github.token }}