Skip to content

Changed repo structure #3

Changed repo structure

Changed repo structure #3

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Build executable
run: pyinstaller --onefile mio_script.py
- name: Upload executable
uses: actions/upload-artifact@v2
with:
name: mio_script_executable
path: dist/mio_script