Skip to content

only one line per slide if the text overflows the text box #3

only one line per slide if the text overflows the text box

only one line per slide if the text overflows the text box #3

Workflow file for this run

name: Build Executable
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install PyInstaller
run: python -m pip install --upgrade pip pyinstaller
- name: Build executable
run: |
pyinstaller --onefile lyrics.py
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: executable-${{ runner.os }}
path: dist/