Files
recipe_tool/.onedev-buildspec.yml
T
2026-05-10 20:56:56 +08:00

27 lines
639 B
YAML

version: 43
jobs:
- name: 构建项目
steps:
- type: CheckoutStep
name: 拉取代码
cloneCredential:
type: DefaultCredential
withLfs: false
withSubmodules: false
checkoutPath: '@project_path@'
condition: SUCCESSFUL
optional: false
- type: BuildImageStep
name: 构建docker镜像
buildPath: '@project_path@'
output:
type: RegistryOutput
tags: latest
condition: SUCCESSFUL
optional: false
jobExecutor: docker
retryCondition: never
maxRetries: 3
retryDelay: 30
timeout: 14400