-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Change get version workflow to an action (#4951)
change get version workflow to an action Signed-off-by: Tommy Hughes <tohughes@redhat.com>
- Loading branch information
1 parent
3ee27ee
commit 8196d78
Showing
6 changed files
with
98 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Get semantic release version | ||
description: "" | ||
inputs: | ||
custom_version: # Optional input for a custom version | ||
description: "Custom version to publish (e.g., v1.2.3) -- only edit if you know what you are doing" | ||
required: false | ||
token: | ||
description: "Personal Access Token" | ||
required: true | ||
default: "" | ||
outputs: | ||
release_version: | ||
description: "The release version to use (e.g., v1.2.3)" | ||
value: ${{ steps.get_release_version.outputs.release_version }} | ||
version_without_prefix: | ||
description: "The release version to use without 'v' (e.g., 1.2.3)" | ||
value: ${{ steps.get_release_version_without_prefix.outputs.version_without_prefix }} | ||
highest_semver_tag: | ||
description: "The highest semantic version tag without the 'v' prefix (e.g., 1.2.3)" | ||
value: ${{ steps.get_highest_semver.outputs.highest_semver_tag }} | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get release version | ||
id: get_release_version | ||
shell: bash | ||
env: | ||
GITHUB_TOKEN: ${{ inputs.token }} | ||
GIT_AUTHOR_NAME: feast-ci-bot | ||
GIT_AUTHOR_EMAIL: feast-ci-bot@willem.co | ||
GIT_COMMITTER_NAME: feast-ci-bot | ||
GIT_COMMITTER_EMAIL: feast-ci-bot@willem.co | ||
run: | | ||
if [[ -n "${{ inputs.custom_version }}" ]]; then | ||
VERSION_REGEX="^v[0-9]+\.[0-9]+\.[0-9]+$" | ||
echo "Using custom version: ${{ inputs.custom_version }}" | ||
if [[ ! "${{ inputs.custom_version }}" =~ $VERSION_REGEX ]]; then | ||
echo "Error: custom_version must match semantic versioning (e.g., v1.2.3)." | ||
exit 1 | ||
fi | ||
echo "::set-output name=release_version::${{ inputs.custom_version }}" | ||
elif [[ "${GITHUB_REF}" == refs/tags/* ]]; then | ||
echo "Using tag reference: ${GITHUB_REF#refs/tags/}" | ||
echo "::set-output name=release_version::${GITHUB_REF#refs/tags/}" | ||
else | ||
echo "Defaulting to branch name: ${GITHUB_REF#refs/heads/}" | ||
echo "::set-output name=release_version::${GITHUB_REF#refs/heads/}" | ||
fi | ||
- name: Get release version without prefix | ||
id: get_release_version_without_prefix | ||
shell: bash | ||
env: | ||
RELEASE_VERSION: ${{ steps.get_release_version.outputs.release_version }} | ||
run: | | ||
if [[ "${RELEASE_VERSION}" == v* ]]; then | ||
echo "::set-output name=version_without_prefix::${RELEASE_VERSION:1}" | ||
else | ||
echo "::set-output name=version_without_prefix::${RELEASE_VERSION}" | ||
fi | ||
- name: Get highest semver | ||
id: get_highest_semver | ||
shell: bash | ||
env: | ||
RELEASE_VERSION: ${{ steps.get_release_version.outputs.release_version }} | ||
run: | | ||
if [[ -n "${{ inputs.custom_version }}" ]]; then | ||
HIGHEST_SEMVER_TAG="${{ inputs.custom_version }}" | ||
echo "::set-output name=highest_semver_tag::$HIGHEST_SEMVER_TAG" | ||
echo "Using custom version as highest semantic version: $HIGHEST_SEMVER_TAG" | ||
else | ||
source infra/scripts/setup-common-functions.sh | ||
SEMVER_REGEX='^v[0-9]+\.[0-9]+\.[0-9]+(-([0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*))?$' | ||
if echo "${RELEASE_VERSION}" | grep -P "$SEMVER_REGEX" &>/dev/null ; then | ||
echo ::set-output name=highest_semver_tag::$(get_tag_release -m) | ||
echo "Using infra/scripts/setup-common-functions.sh to generate highest semantic version: $HIGHEST_SEMVER_TAG" | ||
fi | ||
fi | ||
- name: Check output | ||
shell: bash | ||
env: | ||
RELEASE_VERSION: ${{ steps.get_release_version.outputs.release_version }} | ||
VERSION_WITHOUT_PREFIX: ${{ steps.get_release_version_without_prefix.outputs.version_without_prefix }} | ||
HIGHEST_SEMVER_TAG: ${{ steps.get_highest_semver.outputs.highest_semver_tag }} | ||
run: | | ||
echo $RELEASE_VERSION | ||
echo $VERSION_WITHOUT_PREFIX | ||
echo $HIGHEST_SEMVER_TAG |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters