mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
Add Docker-based cross-compilation for building Wails apps on any platform: - Linux builds from macOS/Windows using Docker with Zig - Windows builds with CGO from Linux/macOS using Docker - macOS builds from Linux/Windows using Docker with osxcross Add wails3 tool lipo command using konoui/lipo library for creating macOS universal binaries on any platform. Add code signing infrastructure: - wails3 sign wrapper command (like build/package) - wails3 tool sign low-level command for Taskfiles - wails3 setup signing interactive wizard - wails3 setup entitlements for macOS entitlements - Keychain integration for secure credential storage Update all platform Taskfiles with signing tasks: - darwin:sign, darwin:sign:notarize - windows:sign, windows:sign:installer - linux:sign:deb, linux:sign:rpm, linux:sign:packages Reorganize documentation: - Move building/signing guides to guides/build/ - Add platform-specific packaging guides (macos, linux, windows) - Add cross-platform build documentation - Add comprehensive signing guide with CI/CD examples - Add auto-updates guide and updater reference - Add distribution tutorial 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
896 B
YAML
36 lines
896 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
vars:
|
|
# Change this to switch package managers: bun, npm, pnpm, yarn
|
|
PKG_MANAGER: npm
|
|
|
|
tasks:
|
|
|
|
setup:
|
|
summary: Setup the project (including D2 diagram tool)
|
|
preconditions:
|
|
- sh: '{{.PKG_MANAGER}} --version'
|
|
msg: "Looks like {{.PKG_MANAGER}} isn't installed."
|
|
- sh: 'go version'
|
|
msg: "Go is not installed. Install from https://go.dev/dl/"
|
|
cmds:
|
|
- '{{.PKG_MANAGER}} install'
|
|
- go install oss.terrastruct.com/d2@latest
|
|
- echo "✓ Setup complete. D2 installed to $(go env GOPATH)/bin/d2"
|
|
|
|
dev:
|
|
summary: Run the dev server
|
|
deps: [setup]
|
|
cmds:
|
|
- '{{.PKG_MANAGER}} run dev'
|
|
|
|
build:
|
|
summary: Build the docs
|
|
preconditions:
|
|
- sh: '{{.PKG_MANAGER}} --version'
|
|
msg: "Looks like {{.PKG_MANAGER}} isn't installed."
|
|
cmds:
|
|
- '{{.PKG_MANAGER}} run build'
|
|
|