File tree Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -56,34 +56,31 @@ jobs:
56
56
run : pip3 install pyinstaller
57
57
58
58
- name : Build for Windows
59
- run : pyinstaller spec\Windows.spec && pyinstaller spec\Windows_dir.spec && pyinstaller spec\debug_dump.spec
59
+ run : pyinstaller spec\Windows.spec && pyinstaller spec\Windows_dir.spec && pyinstaller spec\debug_dump.spec && pyinstaller spec\debug_dump_dir.spec
60
60
61
61
- uses : papeloto/action-zip@v1
62
62
with :
63
63
files : dist/Windows/
64
64
recursive : false
65
65
dest : dist/Windows.zip
66
+ - uses : papeloto/action-zip@v1
67
+ with :
68
+ files : dist/debug_dump/
69
+ recursive : false
70
+ dest : dist/debug_dump.zip
66
71
67
72
- name : Upload to Artifacts
68
73
uses : actions/upload-artifact@v2
69
74
with :
70
75
name : Artifacts Windows
71
76
path : |
72
77
dist/*.exe
73
- dist/Windows .zip
78
+ dist/* .zip
74
79
- name : Upload to Release
75
80
if : github.event_name == 'release'
76
81
uses : svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d
77
82
with :
78
83
repo_token : ${{ secrets.GITHUB_TOKEN }}
79
- file : dist/*.exe
80
- tag : ${{ github.ref }}
81
- file_glob : true
82
- - name : Upload to Release 2
83
- if : github.event_name == 'release'
84
- uses : svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d
85
- with :
86
- repo_token : ${{ secrets.GITHUB_TOKEN }}
87
- file : dist/Windows.zip
84
+ file : dist/*.*
88
85
tag : ${{ github.ref }}
89
86
file_glob : true
You can’t perform that action at this time.
0 commit comments