Skip to content

Commit

Permalink
fix: always push for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 19, 2024
1 parent 1f0deb0 commit a839feb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ export async function getDockerCommand({

let dockerArgs = '';
dockerArgs += push || isAuthenticated ? ' --push ' : '';
// Always push for now to fix prod issue
dockerArgs +=' --push ';

Check failure on line 125 in src/docker.js

View workflow job for this annotation

GitHub Actions / build

Operator '+=' must be spaced
dockerArgs += load ? ' --load ' : '';
const targetArgument = buildTarget ? `--target ${buildTarget}` : '';
const cacheRef = `${CACHE_REPO}:${pyVer}`;
Expand Down

0 comments on commit a839feb

Please sign in to comment.