Skip to content

Fixing workflows

Fixing workflows #4

Workflow file for this run

name: deploy
on:
push:
# tags:
# - '*'
env:
SRC_DIR: zxlive
jobs:
build_and_deploy:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ 3.9 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# cache: 'pip' # caching pip dependencies
- name: Install base package
run: |
pip install .
pip install nuitka==1.5.4
- name: Deploy
run: |
pyside6-deploy --name zxlive --force ${{ env.SRC_DIR }}/__main__.py