mirror of
https://github.com/felixfoertsch/EurKEY-macOS.git
synced 2026-04-16 06:28:28 +02:00
- fix modifier key order to Apple canonical: Option+Shift (not Shift+Option) across parser, validator, PDF generator, website keyboard viewer, README - add EU badge template icons for v1.2/v1.3/v1.4 matching Apple's built-in keyboard layout icon style (edge-to-edge rounded square, text knockout) - add build-icons.sh to generate .icns from SVG source via rsvg-convert - rename create-dmg.sh → build-dmg.sh, update CI workflows - add website feature icons (install, pdf, versions) - update website icon to star-on-key design Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]*'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: extract version from tag
|
|
id: version
|
|
run: echo "version=${GITHUB_REF_NAME}" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: validate layouts
|
|
run: python3 scripts/validate_layouts.py
|
|
|
|
- name: build bundle
|
|
run: bash scripts/build-bundle.sh --version "${{ steps.version.outputs.version }}"
|
|
|
|
- name: create DMG
|
|
run: bash scripts/build-dmg.sh --version "${{ steps.version.outputs.version }}"
|
|
|
|
- name: create GitHub release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
name: EurKEY-macOS ${{ steps.version.outputs.version }}
|
|
files: build/EurKEY-macOS-${{ steps.version.outputs.version }}.dmg
|
|
body: |
|
|
## Installation
|
|
|
|
1. Download `EurKEY-macOS-${{ steps.version.outputs.version }}.dmg`
|
|
2. Open the DMG
|
|
3. Drag `EurKey-macOS.bundle` to the `Install Here (Keyboard Layouts)` folder
|
|
4. Log out and back in (or restart)
|
|
5. System Settings → Keyboard → Input Sources → Add → Select EurKEY
|
|
|
|
## Included layouts
|
|
|
|
- **EurKEY v1.2** — legacy version
|
|
- **EurKEY v1.3** — official spec implementation
|
|
- **EurKEY v1.4** — v1.3 with ẞ on Caps+§
|
|
- **EurKEY v2.0** — custom edition
|
|
generate_release_notes: true
|