0

GitHub-release 资源始终发出最新版本。我想获取具有文件中指定版本的特定标签。

下面没有获取版本 -github-release - pinned version tag: path/to/the/file/with/version not found

- get: github-release
  version: 
   tag: path/to/the/file/with/version
  params:
   include_source_zip: true

我能够通过对版本进行硬编码来获得旧版本

- get: github-release
  version: { tag : 'v1.0.0' }
  params:
   include_source_zip: true

fly check-resource -r pipeline/github-release-resource --from tag:v1.0.0

4

1 回答 1

0

这是一个大厅配置。基本上,如此所述,除非您重置管道,否则您无法在运行时真正更改它:

通过管道配置进行固定对于更永久的固定状态很有用。如果通过管道配置固定资源,则无法通过 Web UI 对其进行修改,只能通过修改和重置管道配置来更改。

此外,命令fly check-resource ...可用于验证版本是否实际存在。

于 2020-12-03T17:05:53.717 回答