From 8682761c6c5a0cc9f791631162d2f2de0579e57b Mon Sep 17 00:00:00 2001 From: XargonWan Date: Thu, 18 Jul 2024 13:36:52 +0900 Subject: [PATCH] WORKFLOW: fixing version extrator - fix3 --- .github/workflows/cooker-selfhosted.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/cooker-selfhosted.yml b/.github/workflows/cooker-selfhosted.yml index 7a176d62..43b4c11f 100644 --- a/.github/workflows/cooker-selfhosted.yml +++ b/.github/workflows/cooker-selfhosted.yml @@ -66,8 +66,7 @@ jobs: run: | source automation_tools/version_extractor.sh MANIFEST_VERSION="$(fetch_manifest_version)" - echo "$MANIFEST_VERSION" - echo "MANIFEST_VERSION=$(fetch_manifest_version)" >> $GITHUB_ENV + echo "MANIFEST_VERSION=$MANIFEST_VERSION" >> $GITHUB_ENV if [[ "$BRANCH_NAME" == 'refs/'* ]]; then pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}') source_branch=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/pulls/$pr_number" | jq -r '.head.ref')