diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a8ac51..33c4373 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,9 +68,9 @@ jobs: id: version_format run: | if [[ ${{ github.head_ref }} == 'master' ]]; then - echo "version_format=${major}.${minor}.${patch}" >> $GITHUB_OUTPUT + echo "version_format=\${major}.\${minor}.\${patch}" >> $GITHUB_OUTPUT else - echo "version_format=${major}.${minor}.${patch}rc${increment}" >> $GITHUB_OUTPUT + echo "version_format=\${major}.\${minor}.\${patch}rc\${increment}" >> $GITHUB_OUTPUT fi - name: print version format