There was an error while loading. Please reload this page.
1 parent 52c57a0 commit 507e36fCopy full SHA for 507e36f
1 file changed
.github/workflows/pgspot.yaml
@@ -53,7 +53,12 @@ jobs:
53
previous_version=$(grep '^previous_version = ' version.config | sed -e 's!^[^=]\+ = !!')
54
git fetch --tags
55
./bootstrap -DGENERATE_DOWNGRADE_SCRIPT=ON
56
- git checkout ${previous_version}
+ # version.config in 2.27.0 tag is incorrect and will produce wrong sql files
57
+ if [ "${previous_version}" == "2.27.0" ]; then
58
+ git checkout 2.27.0-p0
59
+ else
60
+ git checkout ${previous_version}
61
+ fi
62
make -C build sqlfile sqlupdatescripts
63
git checkout ${GITHUB_SHA}
64
0 commit comments