chore(workflows): 添加缺失的actions/checkout步骤
All checks were successful
Build and Push Docker / build (push) Successful in 5m7s
All checks were successful
Build and Push Docker / build (push) Successful in 5m7s
- 在docker.yml工作流的build阶段添加了actions/checkout@v4步骤 - 确保后续构建步骤能够访问代码库 - 修正构建过程中缺少源码检出的错误
This commit is contained in:
parent
dd319a11ae
commit
807dcfd422
@ -11,6 +11,7 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4 # 这行不能少!
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user