Skip to content

Commit

Permalink
better ci
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowTabitha committed Dec 22, 2023
1 parent eb1515e commit e88e261
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,24 @@ jobs:
- name: Install PIP Modules
run: python -m pip install -r requirements.txt

# Build Project
- name: Build Project
# Build Project (Dynamic build)
- name: Build Project (Dynamic build)
run: pyinstaller --noconsole --name="Mario Party Toolkit" --add-data "assets/*;assets/" --distpath=dynamic main.py

# Build Project (Static build)
- name: Build Project (Static build)
run: pyinstaller --onefile --noconsole --name="Mario Party Toolkit" --add-data "assets/*;assets/" main.py

# Upload Artifact
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: MarioPartyToolkit-win32
name: MarioPartyToolkit-win32-static
path: D:\a\Mario-Party-Toolkit\Mario-Party-Toolkit\dist

# Upload Artifact
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: MarioPartyToolkit-win32
path: D:\a\Mario-Party-Toolkit\Mario-Party-Toolkit\dynamic
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ An all and one modding suite for Mario Party that allows certian customizations

## Downloads

##### [Latest Release](https://github.com/EndangeredNayla/Mario-Party-Toolkit/releases/latest)
##### [Development Release](https://nightly.link/EndangeredNayla/Mario-Party-Toolkit/workflows/windows/master/MarioPartyToolkit-win32.zip)
##### [Latest Releases](https://github.com/EndangeredNayla/Mario-Party-Toolkit/releases/latest)
##### [Development Releases](https://nightly.link/EndangeredNayla/Mario-Party-Toolkit/workflows/windows/master)

0 comments on commit e88e261

Please sign in to comment.