forked from customerio/customerio-reactnative
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ahmed-CIO
committed
Dec 22, 2023
1 parent
b906c3d
commit 65f527f
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,14 @@ jobs: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
|
||
- name: Send Velocity Deployment | ||
uses: codeclimate/[email protected] | ||
if: steps.semantic-release.outputs.new_release_published == 'true' # only run if a git tag was made. | ||
with: | ||
token: ${{ secrets.VELOCITY_DEPLOYMENT_TOKEN }} | ||
version: ${{ steps.semantic-release.outputs.new_release_version }} | ||
environment: production | ||
|
||
- name: Notify team of failure | ||
uses: slackapi/[email protected] | ||
if: ${{ failure() }} # only run this if any previous step failed | ||
|