From e4a19d4e4137450298d7f140e8c629eb10abcaa1 Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Sat, 13 Sep 2025 13:32:24 +0700 Subject: [PATCH] :green_heart: (fix-ci) fix gitlab ci error install curl first before using it --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 56ce67a..7ac5039 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,8 @@ stages: - build before_script: + - apt-get update -y + - apt-get install -y curl - curl -fsSL https://bun.sh/install | bash - export PATH="$HOME/.bun/bin:$PATH" - bun install