diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-11 22:17:49 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-11 22:27:38 -0700 |
commit | 8e588a19944e89ded711a1e150b5cd6e7d341994 (patch) | |
tree | 5e9b37fcf7f51600bcc1d00e01d85da2ab94dc05 /worker | |
parent | 07075060900bcfcb84758657946632a1b9750683 (diff) | |
download | ci-8e588a19944e89ded711a1e150b5cd6e7d341994.tar.gz ci-8e588a19944e89ded711a1e150b5cd6e7d341994.zip |
Fix OCI registry
Diffstat (limited to 'worker')
-rwxr-xr-x | worker/scripts/checkout_ci.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worker/scripts/checkout_ci.ts b/worker/scripts/checkout_ci.ts index a44c525..efc2e0e 100755 --- a/worker/scripts/checkout_ci.ts +++ b/worker/scripts/checkout_ci.ts @@ -27,7 +27,7 @@ export function isCiWorkflow(t: unknown): t is CiWorkflow { const CI_WORKFLOW_FILE = '.ci/ci.json'; const OCI_REGISTRY = 'oci.liz.coffee'; -const PIPELINE_IMAGE = OCI_REGISTRY + '/img/ci-worker:release'; +const PIPELINE_IMAGE = OCI_REGISTRY + '/emprespresso/ci_worker:release'; const READONLY_CREDENTIALS = { username: 'readonly', password: 'readonly' }; const run = Date.now().toString(); |