Skip to content

Bump project version to 0.2.0, update CHANGELOG #45

Bump project version to 0.2.0, update CHANGELOG

Bump project version to 0.2.0, update CHANGELOG #45

name: Publish PyInstaller distribution to Github Artifacts
on: [push]
jobs:
check:
name: Check PyInstaller for Python ${{ matrix.python_version }} (${{ matrix.architecture }})
strategy:
fail-fast: false
matrix:
python_version: ["3.11"]
architecture: [x64, x86]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.architecture }}
- uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: ${{ matrix.architecture }}
- name: Install Poetry
uses: SG60/setup-poetry@v1
- name: Install Dependencies
run: poetry install
- name: Install PyInstaller
run: poetry run pip install pyinstaller
- name: Build PyInstaller package
run: poetry run pyinstaller themida-unmutate.spec
- name: "Upload PyInstaller Artifact"
uses: actions/upload-artifact@v3
with:
name: themida-unmutate-py${{ matrix.python_version }}-${{ matrix.architecture }}
path: dist/*.exe
retention-days: 3