Skip to content

bump: version 1.1.2 → 1.2.0 #1

bump: version 1.1.2 → 1.2.0

bump: version 1.1.2 → 1.2.0 #1

Workflow file for this run

name: windows-exe
on:
push:
tags: ["v*", "*.*.*"]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- name: Install osmsg + PyInstaller
run: |
uv venv
uv pip install . pyinstaller
- name: Build osmsg.exe
run: uv run pyinstaller --clean --noconfirm packaging/pyinstaller/osmsg.spec
- name: Smoke-test the exe
run: dist\osmsg.exe --version
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: osmsg-windows-x64
path: dist/osmsg.exe
- name: Attach to release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: dist/osmsg.exe