action! I've GOT WGET

This commit is contained in:
2026-01-03 16:51:36 +08:00
parent 34b9d61006
commit 1b4b5e6a84

View File

@@ -14,23 +14,23 @@ jobs:
runs-on: ubuntu runs-on: ubuntu
container: container:
image: ubuntu:22.04 image: ubuntu:22.04
# 使用host网络模式
options: --network=host options: --network=host
steps: steps:
# 1. 安装基础工具 # 1. 安装基础工具(确保包含 wget
- name: 安装基础工具 - name: 安装基础工具
run: | run: |
apt-get update apt-get update
apt-get install -y tar git curl # 明确安装 wget, tar, git, curl
echo "基础工具安装完成。" apt-get install -y wget tar git curl
echo "基础工具包括wget安装完成。"
# 2. 离线安装 xmake # 2. 离线安装 xmake(关键修正步骤)
- name: 离线安装 xmake - name: 离线安装 xmake
run: | run: |
echo "=== 开始从指定链接安装 xmake ===" echo "=== 开始从指定链接安装 xmake ==="
# 直接从你提供的 Gitea 仓库链接下载 xmake 二进制文件 # 使用已经安装好的wget下载
wget -O /usr/local/bin/xmake https://git.fig-lang.cn/PuqiAR/xmake-binary-copy/raw/commit/989d1f2dabb0bc8d5981a5f900c2cf7c2ac78ee4/xmake-bundle-v3.0.5.linux.x86_64 wget -O /usr/local/bin/xmake https://git.fig-lang.cn/PuqiAR/xmake-binary-copy/raw/commit/989d1f2dabb0bc8d5981a5f900c2cf7c2ac78ee4/xmake-bundle-v3.0.5.linux.x86_64
# 赋予执行权限 # 赋予执行权限