Skip to content

Fix print of title in imshow #75

Fix print of title in imshow

Fix print of title in imshow #75

Workflow file for this run

name: ci
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-20.04, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'
cache: 'pip'
cache-dependency-path: |
pyproject.toml
- name: Install
run: |
pip install .[test]
- name: Linter
run: |
make lint
# `import pyglet` crashes on ubuntu-latest due to missing X window system
if: matrix.os == 'macos-latest'
- name: Build Executable
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: imshow
onefile: true
- name: Test Executable
run: |
./build/imshow.bin --version
# `import pyglet` crashes on ubuntu-latest due to missing X window system
if: matrix.os == 'macos-latest'
- name: Rename Executable
run: |
mv build/imshow.bin build/imshow-${{ runner.os }}.bin
if: matrix.os != 'windows-latest'
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ runner.os }}
path: |
build/*.exe
build/*.bin
release:
needs: build
permissions:
contents: write
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
configurationJson: |
{
"template": "#{{CHANGELOG}}\n\n<details>\n<summary>Uncategorized</summary>\n\n#{{UNCATEGORIZED}}\n</details>\n",
"pr_template": "- #{{TITLE}} ##{{NUMBER}}",
"categories": [
{
"title": "## 🚀 Features",
"labels": ["feature"]
},
{
"title": "## ✨ Enhancement",
"labels": ["enhancement"]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix"]
},
{
"title": "## 💬 Other",
"labels": ["other"]
}
]
}
- name: Create Changelog
run: |
echo ${{steps.github_release.outputs.changelog}} > ${{ github.workspace }}-CHANGELOG.txt
- name: Download Artifact
uses: actions/download-artifact@v4
with:
path: build
pattern: build-*
merge-multiple: true
- name: Release
uses: softprops/action-gh-release@v1
with:
draft: true
body_path: ${{ github.workspace }}-CHANGELOG.txt
files: |
build/*