Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Merge branch 'main' of github.com:Mouwrice/DrumPy #11

Merge branch 'main' of github.com:Mouwrice/DrumPy

Merge branch 'main' of github.com:Mouwrice/DrumPy #11

Workflow file for this run

name: Build & Publish Binaries
on:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Build Executable
uses: Nuitka/Nuitka-Action@v1.1
with:
nuitka-version: main
script-name: ./drumpy/cli.py
onefile: true
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }} Build
path: |
build/*.exe
build/*.bin
build/*.app/**/*