0
我越來越任務配置
任務配置「獲得快照-JAR /紅外/ hw.yml
沒有發現錯誤。我寫了一個非常簡單的管道.yml,這個yml將連接到artifactory資源並運行另一個在任務部分定義的yml。
我pipeline.yml樣子:
resources:
- name: get-snapshot-jar
type: docker-image
source: <artifactory source>
repository: <artifactory repo>
username: {{artifactory-username}}
password: {{artifactory-password}}
jobs:
- name: create-artifact
plan:
- get: get-snapshot-jar
trigger: true
- task: copy-artifact-from-artifact-repo
file: get-snapshot-jar/infra/hw.yml
Artifactiory是後工作正常,我得到一個錯誤 enter image description here 複製僞影的僞影回購 任務配置「獲得快照-JAR /infra/hw.yml'找不到
感謝您的回覆!我已經改變了資源:對我的git回購和複製yml那裏,它工作得很好。 –