From 91d5398702609f97f11bf51e4b1a62ff0dda98c4 Mon Sep 17 00:00:00 2001 From: parsa aghaei Date: Sat, 27 Jun 2026 11:38:22 +0330 Subject: [PATCH] fix: use arvancloud Alpine mirror (Liara returns 500), remove unused proxy --- .gitea/workflows/deploy.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index af4c35d..7c22261 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -9,19 +9,12 @@ jobs: defaults: run: shell: sh - env: - http_proxy: http://172.17.0.1:3001 - https_proxy: http://172.17.0.1:3001 - HTTP_PROXY: http://172.17.0.1:3001 - HTTPS_PROXY: http://172.17.0.1:3001 - no_proxy: 172.17.0.1,localhost,127.0.0.1 - NO_PROXY: 172.17.0.1,localhost,127.0.0.1 steps: - 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://mirror.arvancloud.ir/alpine/v$V/main" > /etc/apk/repositories + echo "https://mirror.arvancloud.ir/alpine/v$V/community" >> /etc/apk/repositories apk add --no-cache openssh-client - name: Setup SSH key env: