Check if installed before running script
Some checks failed
Test, Build, Deploy / Test, Build, and Deploy (push) Successful in 57s
Test, Build, Deploy / Create Sentry Release (push) Failing after 2s

This commit is contained in:
2026-03-13 04:34:26 -04:00
parent c9b32cb581
commit 18947e8446

View File

@@ -43,7 +43,11 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- 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
run: |