From 18947e8446bfc3bdcda993cc3455ce6789b3be2e Mon Sep 17 00:00:00 2001 From: Regalijan Date: Fri, 13 Mar 2026 04:34:26 -0400 Subject: [PATCH] Check if installed before running script --- .gitea/workflows/build-publish.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-publish.yaml b/.gitea/workflows/build-publish.yaml index 3d0f62d..8e74bc3 100644 --- a/.gitea/workflows/build-publish.yaml +++ b/.gitea/workflows/build-publish.yaml @@ -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: |