bgg-ottawa-sell-club/Taskfile.yaml

25 lines
401 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
deploy:
deps: [build]
cmds:
- rsync -av build/ bggsell@gilgamesh:public_html
build:
cmds:
- vite build
update-game:
cmds:
- node src/scripts/updateUsers.js
default:
cmds:
- echo "{{.GREETING}}"
silent: true