Skip to content

Improved the translation for some characters in some fonts #52

Improved the translation for some characters in some fonts

Improved the translation for some characters in some fonts #52

Workflow file for this run

name: Build Python app
on:
push:
tags-ignore:
- "v*"
pull_request:
workflow_dispatch:
merge_group:
jobs:
build:
name: Build app on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["windows-latest", "macos-latest", "ubuntu-latest"]
steps:
- name: Checkout ref
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install requirements
run: |
pip install -r requirements.txt
pip install pyinstaller
- name: PyInstaller
run: pyinstaller main.py
- name: Upload build/
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }} build
path: build/
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }} dist
path: dist/