Check if installed before running script
This commit is contained in:
@@ -43,7 +43,11 @@ jobs:
|
|||||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
||||||
|
|
||||||
- name: Install Sentry SDK
|
- name: Install Sentry SDK
|
||||||
run: curl -sL https://sentry.io/get-cli/ | bash
|
run: |
|
||||||
|
if ! [ -x "$(command -v sentry-cli)" ]; then
|
||||||
|
then
|
||||||
|
curl -sL https://sentry.io/get-cli/ | bash
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Create Remix Release
|
- name: Create Remix Release
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user