From 468009fce5648d74f548ffc2c6c4d4b246cae1ca Mon Sep 17 00:00:00 2001 From: strawberry <strawberry@puppygock.gay> Date: Mon, 29 Jan 2024 19:26:40 -0500 Subject: [PATCH] fix wrong artifact path in gitlab ci Signed-off-by: strawberry <strawberry@puppygock.gay> --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a261786b7..b8d0bab9b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -104,11 +104,11 @@ oci-image:aarch64-unknown-linux-musl: - cp result oci-image.tar.gz artifacts: paths: - - docker-image.tar.gz + - oci-image.tar.gz debian:x86_64-unknown-linux-gnu: stage: artifacts - # See also `rust-toolchain.toml` + # See also `rust-toolchain.toml` image: rust:1.75.0 script: - apt-get update && apt-get install -y --no-install-recommends libclang-dev -- GitLab