mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 03:40:12 +08:00
24 lines
378 B
YAML
24 lines
378 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
vars:
|
|
GREETING: Hello, World!
|
|
|
|
tasks:
|
|
check-contributors:
|
|
cmds:
|
|
- npx -y all-contributors-cli check
|
|
|
|
update-contributors:
|
|
cmds:
|
|
- go run v3/tasks/contribs/main.go
|
|
|
|
build-contributors:
|
|
cmds:
|
|
- npx -y all-contributors-cli generate
|
|
|
|
release:
|
|
dir: v2/tools/release
|
|
cmds:
|
|
- go run release.go |