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