Skip to content

fix imports in main.py #24

fix imports in main.py

fix imports in main.py #24

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install .[dev]
- name: Build
run: pyinstaller Alune.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: alune-build
path: dist/Alune.exe
release:
if: ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' }}
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build
uses: actions/download-artifact@v4
with:
name: alune-build
- name: Parse version from pyproject.toml and write to GITHUB_OUTPUT
id: parse_version
run: |
version=$(cat pyproject.toml | grep version | head -1 | awk '{ gsub("\"", "") } { print $3 }')
echo "version=$version" >> $GITHUB_OUTPUT
- uses: ncipollo/release-action@v1
with:
artifacts: "Alune.exe"
tag: v${{ steps.parse_version.outputs.version }}
draft: true