From 399d32d7d02e8299a377fd62573d52abbbd3af52 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 8 Jan 2023 15:13:14 +0100 Subject: [PATCH] Known VERSION means we've already pushed --- lib/tasks/mrsk/app.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/mrsk/app.rake b/lib/tasks/mrsk/app.rake index 1fb046fd..0b74af82 100644 --- a/lib/tasks/mrsk/app.rake +++ b/lib/tasks/mrsk/app.rake @@ -9,7 +9,7 @@ namespace :mrsk do desc "Build locally and push app image to the registry" task :push do - run_locally { execute app.push } unless ENV["SKIP_PUSH"] + run_locally { execute app.push } unless ENV["VERSION"] end desc "Pull app image from the registry onto servers"