Skip to content

build windows exe with pyinstaller #1

build windows exe with pyinstaller

build windows exe with pyinstaller #1

Workflow file for this run

name: Build
on:
push:
jobs:
build-windows:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.12'
architecture: 'x64'
- name: Install poetry
run: |
pip install poetry
- name: Build
run: |
poetry run build
- name: Upload artifacts
uses: actions/upload-artifacts@v2
with:
name: Windows
path: dist/mapbuilder.exe