Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit 168f352

Browse files
committed
fix
1 parent 03371c7 commit 168f352

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

.github/workflows/main.yml

+19-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [windows,macos,ubuntu]
14-
runs-on: ${{matrix.os}}-latest
13+
os: [macos-latest,ubuntu-latest,macos-latest-large]
14+
runs-on: ${{matrix.os}}
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Setup Python
@@ -31,4 +31,21 @@ jobs:
3131
uses: actions/upload-artifact@v4
3232
with:
3333
name: build-${{matrix.os}}
34+
path: ./dist/*
35+
build-windows:
36+
runs-on: windows-latest
37+
steps:
38+
- uses: actions/checkout@v4
39+
- name: Setup Python
40+
uses: actions/setup-python@v5
41+
with:
42+
python-version: 3.8
43+
- name: Install dependencies
44+
run: pip install -r requirements.txt
45+
- name: Build
46+
run: pyinstaller -F -w --hidden-import=PIL._tkinter_finder --additional-hooks-dir=hooks main.py -n vcbot-bili -i=.res\icon.ico
47+
- name: Upload
48+
uses: actions/upload-artifact@v4
49+
with:
50+
name: build-${{runner.os}}
3451
path: ./dist/*

0 commit comments

Comments
 (0)