File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Release notifier
2
+
3
+ on :
4
+ release :
5
+ types : [ published ]
6
+
7
+ jobs :
8
+ after-release :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Notify Slack
12
+ run : |
13
+ curl -X POST \
14
+ --data-urlencode "payload={
15
+ \"channel\": \"${{ secrets.SLACK_CHANNEL }}\",
16
+ \"username\": \"${{ secrets.QB_PROJECT }} release bot\",
17
+ \"text\": \"<!here>
18
+ The ${{ secrets.QB_PROJECT }} version *${{ github.event.release.name }}* was released.
19
+ >*Changelog:*
20
+ \`\`\`${{ github.event.release.body }}\`\`\`
21
+ >*Link:*
22
+ ${{ github.event.release.html_url }}\",
23
+ \"icon_emoji\": \":rocket:\"}" \
24
+ --url ${{ secrets.SLACK_WEBHOOK_URL }}
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ To create a new Flutter chat messaging app with QuickBlox SDK from scratch follo
32
32
33
33
`
34
34
dependencies:
35
- quickblox_sdk: 0.12.7
35
+ quickblox_sdk: 0.12.8
36
36
`
37
37
38
38
### Send your first message
You can’t perform that action at this time.
0 commit comments