Skip to content

Commit 7be7ccf

Browse files
committed
fix: CI checks
1 parent 1a3a5fe commit 7be7ccf

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ jobs:
77

88
check-release-version:
99
timeout-minutes: 5
10+
runs-on: ubuntu-latest
1011
steps:
1112
- name: Checkout Repo
1213
uses: actions/checkout@v3
1314

14-
run: |
15-
SUFFIX=$(sed -E 's/postgres-version = "[0-9\.]+(.*)"/\1/g' common.vars.pkr.hcl)
16-
if [[ -n $SUFFIX ]] ; then
17-
echo "We no longer allow merging RC versions to develop."
18-
exit 1
19-
fi
15+
- name: Run checks
16+
run: |
17+
SUFFIX=$(sed -E 's/postgres-version = "[0-9\.]+(.*)"/\1/g' common.vars.pkr.hcl)
18+
if [[ -n $SUFFIX ]] ; then
19+
echo "We no longer allow merging RC versions to develop."
20+
exit 1
21+
fi

common.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.1.0.138-rc0"
1+
postgres-version = "15.1.0.138"

0 commit comments

Comments
 (0)