builds godot
Diffstat (limited to '.github/actions/get-version/action.yml')
| -rw-r--r-- | .github/actions/get-version/action.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/get-version/action.yml b/.github/actions/get-version/action.yml index 1b8297a..29cd150 100644 --- a/.github/actions/get-version/action.yml +++ b/.github/actions/get-version/action.yml @@ -21,7 +21,10 @@ runs: echo 'print(status)' >> version.py echo "release=$(python version.py)" >> $GITHUB_ENV release=$(python version.py) - echo "#### ${version}.${release} :rocket:" >> $GITHUB_STEP_SUMMARY + + release_name="$version" + [[ ${release} == 'stable' ]] || release_name+=${release} + echo "release-name=$release_name" >> $GITHUB_ENV shell: bash - name: Post get version |