Last active
January 29, 2018 21:03
-
-
Save Sydney-o9/717afb421191f1929dcb2cf067e4b8b5 to your computer and use it in GitHub Desktop.
#CircleCI - Tip 1 - Snippet 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- run: | |
name: Build Success | |
when: on_success | |
command: | | |
echo "I am executed when the build succeeds..." | |
- run: | |
name: Build Failed | |
when: on_fail | |
command: | | |
echo "I am executed when the build fails..." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment