Skip to content

Add Intel macOS support to CI #56

Add Intel macOS support to CI

Add Intel macOS support to CI #56

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Build on Windows
permissions:
contents: read
on:
push:
branches:
- main
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -U
- name: Build Exe
run:
python build.py
- name: Compile Windows installer with Inno Setup
uses: Minionguyjpro/Inno-Setup-Action@v1.2.2
with:
path: Aura-Text-setup-x64.iss
- name: Upload ZIP
uses: actions/upload-artifact@v4.3.1
with:
name: Aura-Text
path: dist
- name: Upload installer
uses: actions/upload-artifact@v4.3.1
with:
name: Aura-Text-Installer-Output
path: Output