Skip to content

Updated page change algorithm #6

Updated page change algorithm

Updated page change algorithm #6

Workflow file for this run

name: build
on:
release:
types: [published]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Run build on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install pyinstaller
pip install pillow
pip3 install -r requirements.txt
- name: Build tpp using tppbuild
run: |
python3 ./src/build.py
- name: uploading tpp for ${{ matrix.os}}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./src/*.tpp
overwrite: true
file_glob: true
tag: ${{ github.ref }}