We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a3a5fe commit 7be7ccfCopy full SHA for 7be7ccf
.github/workflows/ci.yml
@@ -7,13 +7,15 @@ jobs:
7
8
check-release-version:
9
timeout-minutes: 5
10
+ runs-on: ubuntu-latest
11
steps:
12
- name: Checkout Repo
13
uses: actions/checkout@v3
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
+ - name: Run checks
+ run: |
+ SUFFIX=$(sed -E 's/postgres-version = "[0-9\.]+(.*)"/\1/g' common.vars.pkr.hcl)
+ if [[ -n $SUFFIX ]] ; then
+ echo "We no longer allow merging RC versions to develop."
20
+ exit 1
21
+ fi
common.vars.pkr.hcl
@@ -1 +1 @@
1
-postgres-version = "15.1.0.138-rc0"
+postgres-version = "15.1.0.138"
0 commit comments