diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 52b6f492c6b..85b8f3aa899 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -36,8 +36,7 @@ jobs: - name: Read version name from file working-directory: ./gradle id: read-version - # run: echo "::set-output name=vName::$(awk -F' *= *' '/vName/{print $2}' libs.versions.toml)" - run: echo "::set-output name=vName::$(grep 'vName' libs.versions.toml | awk -F' = ' '{print $2}' | sed 's/,//g')" + run: echo "::set-output name=vName::$(grep 'vName' libs.versions.toml | awk -F' = ' '{print $2}' | sed 's/,//g' | tr -d '"')" - name: Use version name in the next step run: echo "Version name is ${{ steps.read-version.outputs.vName }}"