Build steps in CI/CD action are being skipped #1782
-
I am trying to run the CI/CD action and it is skipping the build process The error is: The CI/CD.yaml is: Any idea what I might be missing or where to look ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@hannahromanko Is this the entire CICD.yaml in your repo? 🤔 Or can you give a description of how you got this error? The error suggests to me that either your CICD.yaml doesn't have an Initialization job or the Initialization job returns an empty value for buildOrderJson. If you edited the CICD.yaml file, I would recommend reverting those changes. |
Beta Was this translation helpful? Give feedback.
Ahh yes that might be the issue. It looks like the curly brackets are being masked by GitHub.
Typically this is because you have a repository (or organizational) secret with line breaks.
Did you define any secrets on your repository?
If any of your secrets contain curly brackets and line breaks (typically because they're JSON structures) try removing the line breaks and update the secret. We've sometimes seen these issues because GitHub masks each line in the secret.
If that doesn't work, could you share the log file to your CICD? That might help us narrow down what's wrong 😊