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
First of all, thank you for this plugin, I have been looking for something similar for some time and it seems I just found it!
There is an issue I'd like to check with you is that I'm currently unable to use Buildkite trigger as it errors out due to the following:
`env` is not a valid property on the `trigger` step. Please check the documentation to get a full list of supported properties.
This seems similar to the issue #39 but what it seems to be the case with me is that even though I don't specify global any env, it tries to add to buildpipe generated yaml anyway.
As you can see above, buildpipe is adding the key env to the same level as build, which is not supported.
Even if I remove the global environment variables, I get the same error as the env is still being added:
# no global env vars this time
projects:
- label: "my-project"
path:
- internal/foo
key: deploy
trigger: "another-pipeline"
build:
env:
BUILDPIPE_SCOPE: project
Hi there 👋
First of all, thank you for this plugin, I have been looking for something similar for some time and it seems I just found it!
There is an issue I'd like to check with you is that I'm currently unable to use Buildkite
trigger
as it errors out due to the following:This seems similar to the issue #39 but what it seems to be the case with me is that even though I don't specify global any
env
, it tries to add to buildpipe generated yaml anyway.Here's an example:
Given the dynamic pipeline below:
The result I get is the following:
As you can see above, buildpipe is adding the key
env
to the same level asbuild
, which is not supported.Even if I remove the global environment variables, I get the same error as the
env
is still being added:Output:
As you can see above, the key
env
is being generated but it is empty (i.e.env: {}
).Let me know if this seems to be a legit issue or if I'm using the plugin wrong. Nevertheless, thank you for your work!
Cheers 🙏
The text was updated successfully, but these errors were encountered: