headroom-eval / Taskfile.yml
Lodri Péter
ship
9c3f9ad
Raw
History Blame Contribute Delete
341 Bytes
version: "3"
tasks:
fix:
cmds: [python3 -c "c=open('app.py').read();c=c.replace('from evals.headroom_runner
import','from headroom_runner import');open('app.py','w').write(c);print('fixed')"]
push:
cmds: [git add -A, git commit -m update || true, git push]
ship:
cmds: [{task: fix}, {task: push}]