Skip to content

Merge branch 'master' of https://github.com/EndangeredNayla/Mario-Par… #5

Merge branch 'master' of https://github.com/EndangeredNayla/Mario-Par…

Merge branch 'master' of https://github.com/EndangeredNayla/Mario-Par… #5

Workflow file for this run

# 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