Skip to content

Updated to support MacOS Sonoma 🚀 #45

Updated to support MacOS Sonoma 🚀

Updated to support MacOS Sonoma 🚀 #45

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: py2app
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: macos-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
- name: Build py2app
run: python3 setup.py py2app --arch=universal2
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: Casita
# A file, directory or wildcard pattern that describes what to upload
path: dist