Skip to content

Commit c7dc6cb

Browse files
Add upload
1 parent e5ab886 commit c7dc6cb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,13 @@ jobs:
1919
run: |
2020
pip install -r requirements.txt
2121
pip install pyinstaller
22-
pyinstaller --onefile __main__.py
22+
pyinstaller --onefile __main__.py
23+
- name: Move binaries
24+
run: |
25+
mkdir bin
26+
mv dist/__main__ bin
27+
- name: Upload artifact
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: bin
31+
path: bin

0 commit comments

Comments
 (0)