File tree Expand file tree Collapse file tree 2 files changed +48
-1
lines changed
Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ build :
10+ runs-on : windows-latest
11+
12+ steps :
13+ - name : Checkout code
14+ uses : actions/checkout@v2
15+
16+ - name : Set up Python
17+ uses : actions/setup-python@v2
18+ with :
19+ python-version : 3.x
20+
21+ - name : Install dependencies
22+ run : |
23+ python -m pip install --upgrade pip
24+ pip install -r requirements.txt
25+
26+ - name : Build project
27+ run : python setup.py build
28+
29+ - name : Build MSI installer
30+ run : |
31+ # Build MSI installer command goes here
32+
33+ - name : Build portable zip
34+ run : |
35+ # Build portable zip command goes here
36+
37+ - name : Upload MSI installer
38+ uses : actions/upload-artifact@v2
39+ with :
40+ name : msi-installer
41+ path : path/to/msi/installer
42+
43+ - name : Upload portable zip
44+ uses : actions/upload-artifact@v2
45+ with :
46+ name : portable-zip
47+ path : path/to/portable/zip
Original file line number Diff line number Diff line change 2323 executables = executables ,
2424 author = 'CodeCraftPlugin' ,
252526- license = 'MIT' )
26+ license = 'MIT' )
You can’t perform that action at this time.
0 commit comments