From 35686d82c3045901e577b0fe80ffe959938725a3 Mon Sep 17 00:00:00 2001 From: parsa aghaei Date: Sun, 12 Jul 2026 13:35:32 +0330 Subject: [PATCH] chore: remove Iranian mirror from CI workflow - use official Alpine repos --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 4e78555..b52c682 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -13,8 +13,8 @@ jobs: - name: Install SSH client run: | V=$(cut -d'.' -f1-2 /etc/alpine-release) - echo "https://linux-mirror.liara.ir/repository/alpine/v$V/main" > /etc/apk/repositories - echo "https://linux-mirror.liara.ir/repository/alpine/v$V/community" >> /etc/apk/repositories + echo "https://dl-cdn.alpinelinux.org/alpine/v$V/main" > /etc/apk/repositories + echo "https://dl-cdn.alpinelinux.org/alpine/v$V/community" >> /etc/apk/repositories apk add --no-cache openssh-client - name: Setup SSH key env: