Skip to content

Commit 8a71b0e

Browse files
authored
fixes for alpha6 (#2)
1 parent 0056295 commit 8a71b0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.iceci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ failureHandlers:
2020
script: |
2121
cat <<EOF > slacknotify.json
2222
{
23-
"text" : "Build $ICE_BUILD_NUMBER on branch $ICE_GIT_BRANCH_NAME failed on step $ICE_FAILED_STEP_NAME commited by $ICE_GIT_AUTHOR_NAME"
23+
"text" : "Build $ICECI_BUILD_NUMBER on branch $ICECI_GIT_BRANCH_NAME failed on step $ICECI_FAILED_STEP_NAME commited by $ICECI_GIT_AUTHOR_NAME"
2424
}
2525
EOF
2626
curl -X POST -H 'Content-type: application/json' --data "@slacknotify.json" $SLACK_WEBHOOK
@@ -71,7 +71,7 @@ steps:
7171
user: iceci
7272
imageName: example-go-webapp
7373
tags:
74-
- "{{ ICE_BUILD_NUMBER }}"
74+
- "{{ ICECI_BUILD_NUMBER }}"
7575
- latest
7676

7777
# comment this step out if you do not want to integrate this pipeline with slack
@@ -81,7 +81,7 @@ steps:
8181
script: |
8282
cat <<EOF > slacknotify.json
8383
{
84-
"text" : "Build $ICE_BUILD_NUMBER on branch $ICE_GIT_BRANCH_NAME finished successfully!"
84+
"text" : "Build $ICECI_BUILD_NUMBER on branch $ICECI_GIT_BRANCH_NAME finished successfully!"
8585
}
8686
EOF
8787
curl -X POST -H 'Content-type: application/json' --data "@slacknotify.json" $SLACK_WEBHOOK

0 commit comments

Comments
 (0)