-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fastlane send slack message on error (#847)
Co-authored-by: Duje Begonja <[email protected]>
- Loading branch information
1 parent
4e804fb
commit a3c20a4
Showing
2 changed files
with
38 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -56,6 +56,12 @@ jobs: | |
secret-ids: | | ||
FASTLANE_MATCH_REPO_SSH_KEY, ${{ secrets.AWS_SECRET_NAME_WALLET_FASTLANE_SSH }} | ||
parse-json-secrets: true | ||
- name: Fetch webhook AWS secrets | ||
uses: aws-actions/aws-secretsmanager-get-secrets@287592d14d9c9c48199db83dc182ae12af3df18e # v1.0.1 | ||
with: | ||
secret-ids: | | ||
WEBHOOK, ${{ secrets.AWS_SECRET_NAME_SLACK_WEBHOOK }} | ||
parse-json-secrets: true | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: | | ||
|
@@ -99,3 +105,4 @@ jobs: | |
bundle exec fastlane deploy --env ios.$FLAVOUR | ||
env: | ||
GIT_TOKEN: ${{ env.WALLET_RADIX_BOT_PAT }} | ||
SLACK_WEBHOOK_URL: ${{ env.WEBHOOK_SLACK_URL }} |
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