diff options
-rwxr-xr-x | justfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/justfile b/justfile index 47d7ca1..e1b7f4c 100755 --- a/justfile +++ b/justfile @@ -32,7 +32,9 @@ dev: ci: build check-links -cd *DEPLOY_FLAGS: +cd *DEPLOY_FLAGS: && (deploy DEPLOY_FLAGS) fly auth docker + +deploy *DEPLOY_FLAGS: templ generate fly deploy --image $(KO_DOCKER_REPO={{ docker_registry }} ko build --sbom none --bare --tags {{ docker-tag }} ./cmd/server) {{ DEPLOY_FLAGS }} |