What App Center service does this affect?
Build
Describe the bug
I updated my repository's directory structure and forgot to set the new location for the .xcwokspace. Since the setup is built to run on every push, app center ran the Build.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The post build script should not run if the build failed
Screenshots

Desktop:
@kuyazee Thanks for the report but this is actually intentional. Some people want to run certain code, even if the build failed.
If you want your code to only run if the build actually succeeded, you can use a gate like this in your post-build script:
if [ "$AGENT_JOBSTATUS" == "Succeeded" ]; then
…
fi
Thank you so much for the reply, I'm not sure if this is in the documentation I haven't checked in a while. If not please consider placing this on the documentation.
Good idea, we'll look into that. Thanks! 🙂