更新 .github/workflows/build-exe.yml

This commit is contained in:
miu
2026-03-15 04:44:56 +08:00
Unverified
parent 26a48a587b
commit 20ae158e69

View File

@@ -7,10 +7,18 @@ on:
jobs:
build:
runs-on: Ubuntu_docker_act
# 指定一个包含了 Node.js 的 Docker 镜像
container:
image: node:20-bullseye
runs-on: ubuntu-latest # 使用上面的标签
steps:
- uses: actions/checkout@v4
# Node.js 已经预装,直接使用
- name: Node.js version
run: node --version
# Python 已经预装,直接使用
- name: Python version
run: python --version
steps:
- name: Checkout