Skip to content

Commit 79f0aef

Browse files
authored
Update welcome.yml
1 parent 295c1b8 commit 79f0aef

File tree

1 file changed

+25
-17
lines changed

1 file changed

+25
-17
lines changed

.github/workflows/welcome.yml

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,32 @@
1-
name: Welcome Message
1+
name: Multi-OS Build
2+
23
on:
3-
issues:
4-
types: [opened]
4+
push:
5+
branches: [ "main" ]
6+
workflow_dispatch:
57

68
jobs:
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

0 commit comments

Comments
 (0)