From e71a7d1d085fd26f68610be4e2f2d88eff1b7601 Mon Sep 17 00:00:00 2001 From: Ethan Mosbaugh Date: Fri, 31 Jan 2025 22:13:16 -0800 Subject: [PATCH] f --- .github/workflows/ci.yaml | 6 ++++++ .github/workflows/release-prod.yaml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d29d6a398..c4bcb8303 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -624,6 +624,12 @@ jobs: export RELEASE_YAML_DIR=e2e/kots-release-install-legacydr ./scripts/ci-release-app.sh + # then a noop upgrade + export EC_VERSION="$(git describe --tags --abbrev=4 --match='[0-9]*.[0-9]*.[0-9]*')" + export APP_VERSION="appver-${SHORT_SHA}-noop" + export RELEASE_YAML_DIR=e2e/kots-release-install + ./scripts/ci-release-app.sh + # and finally an app upgrade export EC_VERSION="$(git describe --tags --abbrev=4 --match='[0-9]*.[0-9]*.[0-9]*')-upgrade" export APP_VERSION="appver-${SHORT_SHA}-upgrade" diff --git a/.github/workflows/release-prod.yaml b/.github/workflows/release-prod.yaml index b2efc50be..d01a5380b 100644 --- a/.github/workflows/release-prod.yaml +++ b/.github/workflows/release-prod.yaml @@ -343,6 +343,12 @@ jobs: export RELEASE_YAML_DIR=e2e/kots-release-install ./scripts/ci-release-app.sh + # then a noop upgrade + export EC_VERSION="${{ github.ref_name }}" + export APP_VERSION="appver-${{ github.ref_name }}-noop" + export RELEASE_YAML_DIR=e2e/kots-release-install + ./scripts/ci-release-app.sh + # and finally an app upgrade export EC_VERSION="${{ github.ref_name }}" export APP_VERSION="appver-${{ github.ref_name }}-upgrade"