From dcc7aa87b54adec4efe68ac4fee2758622f6956d Mon Sep 17 00:00:00 2001 From: qxa Date: Thu, 11 Apr 2024 17:43:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/release.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 353fd92..07cbb5f 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -15,7 +15,16 @@ jobs: name: 编译 runs-on: linux + container: node:alpine + steps: + - name: 安装基础配件 + run: | + sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories + apk update + apk add bash + apk add jq + - name: 下载源码 uses: actions/checkout@v3