diff --git a/.github/workflows/build-exe.yml b/.github/workflows/build-exe.yml index 6e742aa..16d9bb9 100644 --- a/.github/workflows/build-exe.yml +++ b/.github/workflows/build-exe.yml @@ -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