about summary refs log tree commit diff stats
path: root/justfile
diff options
context:
space:
mode:
authorAlan Pearce2024-05-11 19:01:20 +0200
committerAlan Pearce2024-05-11 19:01:20 +0200
commitf7d38fd115987e4a4f11bbbad41033086c3de406 (patch)
treea3aea9865cf172fe11fcba22f72db3894ae5d86f /justfile
parente1b5b28cd294ae05c6419c2dbf55cb1ab9871c2b (diff)
downloadwebsite-f7d38fd115987e4a4f11bbbad41033086c3de406.tar.lz
website-f7d38fd115987e4a4f11bbbad41033086c3de406.tar.zst
website-f7d38fd115987e4a4f11bbbad41033086c3de406.zip
skip setting skopeo flags; not needed
Diffstat (limited to 'justfile')
-rwxr-xr-xjustfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/justfile b/justfile
index 5154fa7..e347d98 100755
--- a/justfile
+++ b/justfile
@@ -56,18 +56,18 @@ docker-stream-fly:
 
 docker-image-fly: (docker-image fly-system)
 
-docker-inspect image-path="result" *skopeo-flags="":
-    skopeo {{ skopeo-flags }} inspect docker-archive:{{ image-path }}
+docker-inspect image-path="result":
+    skopeo inspect docker-archive:{{ image-path }}
 
 print-docker-tag:
     @echo {{ fly-registry }}:{{ docker-tag }}
 
-stream-to-registry *skopeo-flags="": sentry-create-release && sentry-finalise-release
-    just docker-stream-fly | gzip --fast | skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive:/dev/stdin docker://{{ fly-registry }}:{{ docker-tag }}
+stream-to-registry : sentry-create-release && sentry-finalise-release
+    just docker-stream-fly | gzip --fast | skopeo copy --dest-precompute-digests docker-archive:/dev/stdin docker://{{ fly-registry }}:{{ docker-tag }}
 
 result := `readlink -f result`
-push-to-registry *skopeo-flags="": sentry-create-release && sentry-finalise-release
-    skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive://{{ result }}  docker://{{ fly-registry }}:{{ docker-tag }}
+push-to-registry: sentry-create-release && sentry-finalise-release
+    skopeo copy --dest-precompute-digests docker-archive://{{ result }}  docker://{{ fly-registry }}:{{ docker-tag }}
 
 sentry-create-release:
     sentry-cli releases new {{ version }}