From b452aac9e0116d40c821a6f83d4c10534685c691 Mon Sep 17 00:00:00 2001 From: Nayla Date: Fri, 22 Dec 2023 12:15:09 -0500 Subject: [PATCH 1/3] Create windows.yml --- .github/workflows/windows.yml | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..922b1f4 --- /dev/null +++ b/.github/workflows/windows.yml @@ -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 From 1f302d80e44c8b8d7884493e510a251dc236aa9b Mon Sep 17 00:00:00 2001 From: Nayla Date: Fri, 22 Dec 2023 12:22:18 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 52bde06..a1d54de 100644 --- a/README.md +++ b/README.md @@ -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) From c9dcc638fec1f517c8151c9c20137379167c0d26 Mon Sep 17 00:00:00 2001 From: Nayla Date: Fri, 22 Dec 2023 12:22:32 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a1d54de..301d298 100644 --- a/README.md +++ b/README.md @@ -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 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)