Continuation/continue doesnot trigger configuration path yml

Tried using continuation and path-filtering, The path-filtering works fine for each commit, but I am trying to continue to another yml when tags are created using continue, the parameters seems to be fine when i check the circleci-application, but it doesnot trigger configuration_path file. Just the main config.yml gets executed successfully.

  trigger_build:
    jobs:
      - continuation/continue:
          name: release-tag-ombordsalg
          filters:
            tags:
              only: /^testmodule/v.*/
            branches:
              ignore: /.*/
          configuration_path: ".circleci/modules_config.yml"
          parameters: '{ "run_release_workflow": true }'

solved it

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.