mirror of
https://ghproxy.net/https://github.com/bohdanbobrowski/blog2epub.git
synced 2026-07-27 13:07:20 +08:00
28 lines
621 B
YAML
28 lines
621 B
YAML
name: MacOS build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
KIVY_GL_BACKEND: angle_sdl2
|
|
|
|
jobs:
|
|
|
|
macos-build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Create Executable
|
|
uses: sayyid5416/pyinstaller@v1
|
|
with:
|
|
python_ver: '3.12'
|
|
spec: 'blog2epub_macos.spec'
|
|
requirements: 'requirements.txt'
|
|
upload_exe_with_name: 'blog2epub.app'
|
|
- name: Make and upload dng
|
|
run: bash ./make_macos_dmg.sh
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: blog2epub_v1.5.0_macos.dmg
|
|
path: ./dist/blog2epub_v1.5.0_macos.dmg
|