Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowTabitha committed Dec 22, 2023
2 parents 841a200 + c9dcc63 commit eb1515e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: Windows CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
pull_request:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Installs PIP Modules
- name: Install PIP Modules
run: python -m pip install -r requirements.txt

# Build Project
- name: Build Project
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
path: D:\a\Mario-Party-Toolkit\Mario-Party-Toolkit\dist
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Mario Party Toolkit

An all and one modding suite for Mario Party that allows certian customizations to the game

## 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)

0 comments on commit eb1515e

Please sign in to comment.