Skip to content

Commit a6d6214

Browse files
authored
Small fix to add quotes to build-push for slack (#691)
1 parent 259a174 commit a6d6214

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,17 @@ jobs:
9393
fields: [
9494
{
9595
title: 'Tag',
96-
value: ${{ github.event.client_payload.tag_name }},
96+
value: `${{ github.event.client_payload.tag_name }}`,
9797
short: true
9898
},
9999
{
100100
title: 'Author',
101-
value: ${{ github.event.client_payload.author }},
101+
value: `${{ github.event.client_payload.author }}`,
102102
short: true
103103
},
104104
{
105105
title: 'Preview URL',
106-
value: ${{ env.PREVIEW_URL }},
106+
value: `${{ env.PREVIEW_URL }}`,
107107
short: true
108108
}]
109109
}]

0 commit comments

Comments
 (0)