Add files for v1.0.0 release #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+* | |
jobs: | |
linux: | |
strategy: | |
matrix: | |
build-type: ['', portable] | |
include: | |
- build-type: '' | |
build-flag: '' | |
suffix: '' | |
- build-type: portable | |
build-flag: --portable | |
suffix: _portable | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- run: pip install -Ur requirements.txt pyinstaller | |
- run: pyinstaller main.spec -- ${{ matrix.build-flag }} | |
- run: tar czfC dist/donkeydoc_linux_x86_64${{ matrix.suffix }}.tar.gz dist donkeydoc | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: donkeydoc_linux_x86_64${{ matrix.suffix }} | |
path: dist/donkeydoc_linux_x86_64${{ matrix.suffix }}.tar.gz | |
macos: | |
strategy: | |
matrix: | |
os-version: ['12', '14'] | |
include: | |
- os-version: '12' | |
arch: x86_64 | |
- os-version: '14' | |
arch: aarch64 | |
runs-on: macos-${{ matrix.os-version }} | |
env: | |
# even though we run on 12, target towards compatibility | |
MACOSX_DEPLOYMENT_TARGET: '11.0' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- run: pip install -Ur requirements.txt pyinstaller | |
- run: pyinstaller main.spec | |
- run: tar czfC dist/donkeydoc_macos_${{ matrix.arch }}.tar.gz dist donkeydoc.app | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: donkeydoc_macos_${{ matrix.arch }} | |
path: dist/donkeydoc_macos_${{ matrix.arch }}.tar.gz | |
windows: | |
strategy: | |
matrix: | |
build-type: ['', portable] | |
include: | |
- build-type: '' | |
build-flag: '' | |
suffix: '' | |
file-end: '' | |
- build-type: portable | |
build-flag: --portable | |
suffix: _portable | |
file-end: .exe | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- run: pip install -Ur requirements.txt pyinstaller | |
- run: PyInstaller main.spec -- ${{ matrix.build-flag }} | |
- run: Compress-Archive -Path dist/DonkeyDoc${{ matrix.file-end }} -DestinationPath dist/donkeydoc_windows_x86_64${{ matrix.suffix }}.zip | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: donkeydoc_windows_x86_64${{ matrix.suffix }} | |
path: dist/donkeydoc_windows_x86_64${{ matrix.suffix }}.zip | |
publish: | |
needs: [linux, macos, windows] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
donkeydoc_linux_x86_64/* | |
donkeydoc_linux_x86_64_portable/* | |
donkeydoc_macos_x86_64/* | |
donkeydoc_macos_aarch64/* | |
donkeydoc_windows_x86_64/* | |
donkeydoc_windows_x86_64_portable/* |