- Remove mkdocs files (requirements.txt, CNAME) - Add CLI documentation: build.md, release.md, php.md, run.md - Add configuration.md with full reference - Add examples/ directory with sample configurations: - go-cli-release.yaml - wails-desktop-release.yaml - php-laravel-release.yaml - linuxkit-server.yml - linuxkit-docker-format.yml - full-release.yaml - minimal-release.yaml - official-repos.yaml - Flatten existing framework docs into framework/ - Update index.md as CLI entry point Ready for VitePress integration with core-php/docs. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
617 B
YAML
36 lines
617 B
YAML
# Example: Wails Desktop App Release Configuration
|
|
# Builds cross-platform desktop app and publishes to GitHub
|
|
|
|
version: 1
|
|
|
|
project:
|
|
name: myapp
|
|
repository: myorg/myapp
|
|
|
|
build:
|
|
targets:
|
|
- os: darwin
|
|
arch: amd64
|
|
- os: darwin
|
|
arch: arm64
|
|
- os: windows
|
|
arch: amd64
|
|
- os: linux
|
|
arch: amd64
|
|
|
|
publishers:
|
|
- type: github
|
|
prerelease: false
|
|
draft: true # Review before publishing
|
|
|
|
# Homebrew cask for macOS
|
|
- type: homebrew
|
|
tap: myorg/homebrew-tap
|
|
formula: myapp
|
|
|
|
changelog:
|
|
include:
|
|
- feat
|
|
- fix
|
|
- perf
|
|
- ui # Custom type for UI changes
|