From 40df1c42164f79d731d5b5876d1f4b3ad67edadd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Rami=CC=81rez?= Date: Sat, 18 Apr 2026 15:26:26 -0600 Subject: [PATCH] Hotfix at deployment job --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97a8bb6..12e5e20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,9 +102,9 @@ jobs: - name: Read library version id: version run: | - VERSION=$(php -r 'require "src/Version.php"; echo Dev1\\NotifyCore\\Version::VERSION;') + VERSION=$(php -r 'require "src/Version.php"; echo Dev1\NotifyCore\Version::VERSION;') if [ -z "$VERSION" ]; then - echo "::error::Unable to read Dev1\\NotifyCore\\Version::VERSION" + echo "::error::Unable to read Dev1\NotifyCore\Version::VERSION" exit 1 fi echo "version=$VERSION" >> "$GITHUB_OUTPUT"