Skip to content

Bump version number #16

Bump version number

Bump version number #16

Workflow file for this run

on:
push:
branches: [main]
paths-ignore:
- ".gitignore"
- "LICENSE.md"
- "README.md"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.12.4
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller --paths=./src -y ./src/tabor.py
- uses: actions/upload-artifact@v2
with:
path: dist/*