You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting artifact_name in the provider, if the origin has a hyphen, the package ident gets incorrectly parsed.
e.g.
origin = "my-origin"
package name = "my-package"
the package ident should be: my-origin/my-package/[version]/build]
instead it gets parsed to: my/origin-my-package/[version]/[build]
Possible solution:
Require "package_origin" to be set and use it to parse the pkg_ident correctly
I think I'd like to also suggest allowing a "use_lastbuild" option to parse pkg_artifact and pkg_ident directly from the lastbuild.env in the results directory.
The text was updated successfully, but these errors were encountered:
When setting artifact_name in the provider, if the origin has a hyphen, the package ident gets incorrectly parsed.
e.g.
origin = "my-origin"
package name = "my-package"
the package ident should be: my-origin/my-package/[version]/build]
instead it gets parsed to: my/origin-my-package/[version]/[build]
Possible solution:
I think I'd like to also suggest allowing a "use_lastbuild" option to parse pkg_artifact and pkg_ident directly from the lastbuild.env in the results directory.
The text was updated successfully, but these errors were encountered: