File tree Expand file tree Collapse file tree 1 file changed +25
-17
lines changed
Expand file tree Collapse file tree 1 file changed +25
-17
lines changed Original file line number Diff line number Diff line change 1- name : Welcome Message
1+ name : Multi-OS Build
2+
23on :
3- issues :
4- types : [opened]
4+ push :
5+ branches : [ "main" ]
6+ workflow_dispatch :
57
68jobs :
7- welcome :
8- runs-on : ubuntu -latest
9+ build-windows :
10+ runs-on : windows -latest
911 steps :
10- - uses : actions/github-script@v6
12+ - uses : actions/checkout@v3
13+
14+ - name : Set up Python
15+ uses : actions/setup-python@v4
1116 with :
12- script : |
13- github.rest.issues.createComment({
14- issue_number: context.issue.number,
15- owner: context.repo.owner,
16- repo: context.repo.repo,
17- body: `👋 **Hi there!** Thank you for contributing to the **shadPS4 Community Compatibility List**! Your report helps everyone.
17+ python-version : ' 3.10 '
18+
19+ - name : Install dependencies
20+ run : |
21+ python -m pip install --upgrade pip
22+ pip install pyinstaller
1823
19- **Quick Links:**
20- * 🎮 [shadPS4 Discord](https://discord.com/invite/shadps4)
21- * ⭐ [Give a Star to this Repo](https://github.com/${context.repo.owner}/${context.repo.repo})
24+ - name : Build EXE
25+ run : |
26+ pyinstaller --noconsole --onefile --icon=shadps4-emulator.ico gui_app.py
2227
23- The automated labeler will process your report shortly. Have a great day!`
24- })
28+ - name : Upload Artifact
29+ uses : actions/upload-artifact@v3
30+ with :
31+ name : shadPS4-Explorer-Windows
32+ path : dist/*.exe
You can’t perform that action at this time.
0 commit comments