12345678910111213141516171819202122232425262728 |
- {% metadata_file .yamato/project.metafile %}
- ---
- publish:
- name: Publish to Internal Registry
- agent:
- type: Unity::VM
- image: package-ci/win10:stable
- flavor: b1.large
- commands:
- - npm install upm-ci-utils@stable -g --registry {{ urls.upm }}
- - upm-ci package publish --package-path .
- triggers:
- tags:
- only:
- - /^(r|R)(c|C)-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/
- artifacts:
- artifacts:
- paths:
- - "upm-ci~/packages/*.tgz"
- dependencies:
- - .yamato/pack.yml#pack
- {% for editor in blocking_test_editors %}
- {% for platform in test_platforms %}
- - .yamato/test.yml#test_{{ platform.name }}_{{ editor.version }}
- - .yamato/test.yml#validate_{{ platform.name }}_{{ editor.version }}
- {% endfor %}
- {% endfor %}
|