From b35fb011e0c3dcb1e8be8c8b121c5b6a598bf0b5 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Wed, 25 Mar 2026 11:03:56 +0100 Subject: [PATCH] fix wrong env variable --- .github/workflows/linux-flatpak.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-flatpak.yml b/.github/workflows/linux-flatpak.yml index 5ee6b9d86..70dd1d7fd 100644 --- a/.github/workflows/linux-flatpak.yml +++ b/.github/workflows/linux-flatpak.yml @@ -197,7 +197,7 @@ jobs: CURRENT_REVISION="$(yq '(.modules[] | select(.name == "cryptomator") | .build-options.env.REVISION_NO)' org.cryptomator.Cryptomator.yaml)" if [[ "$CURRENT_VERSION" == "$TARGET_VERSION" && "$CURRENT_REVISION" =~ ^[0-9]+$ ]]; then - NEXT_REVISION=$((CURRENT_REL + 1)) + NEXT_REVISION=$((CURRENT_REVISION + 1)) else NEXT_REVISION=1 fi