diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 7416bd9..1c14aeb 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -86,14 +86,17 @@ jobs: IS_LATEST_VERSION=false IS_STABLE_VERSION=true IS_GTS_VERSION=true + IS_BETA_VERSION=false elif [[ "${{ matrix.fedora_version }}" -eq "40" ]]; then IS_LATEST_VERSION=true IS_STABLE_VERSION=true IS_GTS_VERSION=false + IS_BETA_VERSION=false elif [[ "${{ matrix.fedora_version }}" -eq "41" ]]; then IS_LATEST_VERSION=false IS_STABLE_VERSION=false IS_GTS_VERSION=false + IS_BETA_VERSION=true fi COMMIT_TAGS=() @@ -129,6 +132,11 @@ jobs: BUILD_TAGS+=("gts") fi + if [[ "${IS_BETA_VERSION}" == "true" ]]; then + BUILD_TAGS+=("beta-${TIMESTAMP}") + BUILD_TAGS+=("beta") + fi + if [[ "${{ github.event_name }}" == "pull_request" ]]; then echo "Generated the following commit tags: " for TAG in "${COMMIT_TAGS[@]}"; do