From f8b88c2c56591b9729c6f46f21dc6b3e0444f90a Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 11 May 2024 11:35:09 +0000 Subject: [PATCH] fix(ci): missed the flags operand --- Taskfile.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Taskfile.yml b/Taskfile.yml index 5535ab7d..2f1fc764 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,5 +1,7 @@ version: '3' dotenv: ['.env'] +vars: + COMMIT_SHA: {sh: 'git rev-parse --short HEAD'} tasks: default: cmds: @@ -10,3 +12,7 @@ tasks: - yarn workspaces focus --all - yarn workspace frontend run build - yarn workspace api run build + + ci: + cmds: + - earthly --ci --push +build-all --COMMIT={{ .COMMIT_SHA }} --LABEL=nightly