mirror of
https://github.com/felixfoertsch/EurKEY-macOS.git
synced 2026-04-16 06:28:28 +02:00
- rename v2.0 → EurKEY Next across all files, scripts, workflows, website - rename bundle EurKey-macOS → EurKEY-macOS - add §/± to ¬ dead key (¬+s → §, ¬+S → ±) for ANSI keyboard compatibility - normalize Caps Lock = Shift across all four layouts, remove custom Caps bindings - fix v1.4: revert accidental Caps/ẞ changes, correct changelog to super/subscript swap - update README: remove duplicate v1.2–v1.4 changelog, reorder versions (Next first) - update website: ISO+ANSI feature card, EurKEY Next branding, consistent version order Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
45 lines
880 B
YAML
45 lines
880 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'EurKEY-Next.bundle/**'
|
|
- 'scripts/**'
|
|
- 'spec/**'
|
|
pull_request:
|
|
paths:
|
|
- 'EurKEY-Next.bundle/**'
|
|
- 'scripts/**'
|
|
- 'spec/**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: install Python dependencies
|
|
run: pip install fpdf2
|
|
|
|
- name: build bundle
|
|
run: bash scripts/build-bundle.sh
|
|
|
|
- name: validate layouts
|
|
run: python3 scripts/validate_layouts.py
|
|
|
|
- name: create DMG
|
|
run: bash scripts/build-dmg.sh
|
|
|
|
- name: upload DMG
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: EurKEY-Next-DMG
|
|
path: build/*.dmg
|