only one line per slide if the text overflows the text box #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | |