From a8dde7229c6b41cbdd81845c6408487ea620d6c5 Mon Sep 17 00:00:00 2001 From: Cyrill Raccaud Date: Fri, 23 Aug 2024 18:24:37 +0200 Subject: [PATCH] fix publish workflow --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 23a0eb1..b7c5b5b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,7 +45,7 @@ jobs: - name: Extract version from file id: extract_file_version run: | - VERSION=$(grep '__VERSION__' ./docker2mqtt/__init__.py | sed -E 's/version = "(.*)"/\1/') + VERSION=$(grep '__VERSION__' ./docker2mqtt/__init__.py | sed -E 's/__VERSION__ = "(.*)"/\1/') echo "FILE_VERSION=$VERSION" >> $GITHUB_ENV - name: Extract version from setup config