Skip to content

Commit

Permalink
fix(ci): previous stable tests do not work for k0s 1.29 (#1485)
Browse files Browse the repository at this point in the history
* fix(ci): previous stable tests do not work for k0s 1.29

* test

* Revert "fix(ci): previous stable tests do not work for k0s 1.29"

This reverts commit 780de31.

* fix(ci): previous stable tests do not work for k0s 1.29

* f

* Revert "test"

This reverts commit 9b0be2b.
  • Loading branch information
emosbaugh authored Nov 11, 2024
1 parent 9d5707d commit d058b5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,9 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
k0s_majmin_version="$(make print-PREVIOUS_K0S_VERSION | sed 's/v\([0-9]*\.[0-9]*\).*/\1/')"
if [ "$k0s_majmin_version" == "1.28" ]; then
k0s_majmin_version="1.29"
fi
EC_VERSION="$(gh release list --repo replicatedhq/embedded-cluster \
--exclude-drafts --exclude-pre-releases --json name \
--jq '.[] | .name' \
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
k0s_majmin_version="$(make print-PREVIOUS_K0S_VERSION | sed 's/v\([0-9]*\.[0-9]*\).*/\1/')"
if [ "$k0s_majmin_version" == "1.28" ]; then
k0s_majmin_version="1.29"
fi
EC_VERSION="$(gh release list --repo replicatedhq/embedded-cluster \
--exclude-drafts --exclude-pre-releases --json name \
--jq '.[] | .name' \
Expand Down

0 comments on commit d058b5c

Please sign in to comment.