Advertisement
Al-Azif

Untitled

Aug 13th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.35 KB | None | 0 0
  1. on_success:
  2. - sh: >-
  3.     postdata=$(cat <<EOF
  4.     {
  5.       "username": "MiraBot",
  6.       "embeds": [{
  7.         "title": "Successful Build: $APPVEYOR_BUILD_VERSION",
  8.         "url": "https://ci.appveyor.com/project/$APPVEYOR_ACCOUNT_NAME/$APPVEYOR_PROJECT_SLUG/build/$APPVEYOR_BUILD_VERSION",
  9.         "color": 8311585,
  10.         "timestamp": "$(date "+%Y-%m-%dT%T.%3NZ")",
  11.         "footer": {
  12.           "icon_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Appveyor_logo.svg/256px-Appveyor_logo.svg.png",
  13.           "text": "AppVeyor"
  14.         }
  15.       }]
  16.     }
  17.     EOF
  18.     )
  19.  
  20.     curl -X POST "$DISCORDHOOKURL" -H "Content-Type: application/json" -s -d "$postdata";
  21. on_failure:
  22. - sh: >-
  23.    postdata=$(cat <<EOF
  24.    {
  25.      "username": "MiraBot",
  26.      "embeds": [{
  27.        "title": "Failed Build: $APPVEYOR_BUILD_VERSION",
  28.        "url": "https://ci.appveyor.com/project/$APPVEYOR_ACCOUNT_NAME/$APPVEYOR_PROJECT_SLUG/build/$APPVEYOR_BUILD_VERSION",
  29.        "color": 13632027,
  30.        "timestamp": "$(date "+%Y-%m-%dT%T.%3NZ")",
  31.        "footer": {
  32.          "icon_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Appveyor_logo.svg/256px-Appveyor_logo.svg.png",
  33.          "text": "AppVeyor"
  34.        }
  35.      }]
  36.    }
  37.    EOF
  38.    )
  39.  
  40.    curl -X POST "$DISCORDHOOKURL" -H "Content-Type: application/json" -s -d "$postdata";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement