Skip to content

mejora: iva no informa cuando es monotrbuuto #26

mejora: iva no informa cuando es monotrbuuto

mejora: iva no informa cuando es monotrbuuto #26

Workflow file for this run

name: Build Windows Executable
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.4'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Install escpos all modules includes win32 printing module if windows SO
run: |
pip install 'python-escpos[all]'
- name: Install socketio client
run: |
pip install 'python-socketio[client]'
- name: Install project dependencies
run: |
pip install -r requirements.cli.txt
- name: Build executable
run: |
pyinstaller --onefile --add-data "./capabilities.json:escpos" --console --name fiscalberry --distpath dist --icon ./src/common/assets/fiscalberry.ico src/cli.py
- name: Upload executable
uses: actions/upload-artifact@v3
with:
name: fiscalberry
path: dist