mirror of
https://github.com/reecetech/version-increment.git
synced 2025-12-21 06:25:44 +00:00
Replace set-output with append to GITHUB_OUTPUT
This commit is contained in:
@@ -76,7 +76,7 @@ fi
|
|||||||
if [[ "${current_ref}" != "refs/heads/${default_branch}" ]] ; then
|
if [[ "${current_ref}" != "refs/heads/${default_branch}" ]] ; then
|
||||||
pre_release="pre.${git_commit}"
|
pre_release="pre.${git_commit}"
|
||||||
new_version="${new_version}-${pre_release}"
|
new_version="${new_version}-${pre_release}"
|
||||||
echo "::set-output name=pre-release-label::${pre_release}"
|
echo "PRE_RELEASE_LABEL=${pre_release}" >> "${GITHUB_OUTPUT}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$(echo "${new_version}" | ${grep} -P "${pcre_semver}")" ]] ; then
|
if [[ -z "$(echo "${new_version}" | ${grep} -P "${pcre_semver}")" ]] ; then
|
||||||
@@ -88,11 +88,11 @@ fi
|
|||||||
|
|
||||||
echo "ℹ️ The new version is ${new_version}"
|
echo "ℹ️ The new version is ${new_version}"
|
||||||
|
|
||||||
echo "::set-output name=version::${new_version}"
|
echo "VERSION=${new_version}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=v-version::v${new_version}"
|
echo "V_VERSION=v${new_version}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=major-version::${version_array[0]}"
|
echo "MAJOR_VERSION=${version_array[0]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=minor-version::${version_array[1]}"
|
echo "MINOR_VERSION=${version_array[1]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=patch-version::${version_array[2]}"
|
echo "PATCH_VERSION=${version_array[2]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=major-v-version::v${version_array[0]}"
|
echo "MAJOR_V_VERSION=v${version_array[0]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=minor-v-version::v${version_array[1]}"
|
echo "MINOR_V_VERSION=v${version_array[1]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=patch-v-version::v${version_array[2]}"
|
echo "PATCH_V_VERSION=v${version_array[2]}" >> "${GITHUB_OUTPUT}"
|
||||||
|
|||||||
@@ -61,5 +61,5 @@ fi
|
|||||||
|
|
||||||
echo "ℹ️ The current normal version is ${current_version}"
|
echo "ℹ️ The current normal version is ${current_version}"
|
||||||
|
|
||||||
echo "::set-output name=current-version::${current_version}"
|
echo "CURRENT_VERSION=${current_version}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=current-v-version::v${current_version}"
|
echo "CURRENT_V_VERSION=v${current_version}" >> "${GITHUB_OUTPUT}"
|
||||||
|
|||||||
Reference in New Issue
Block a user