Skip to content

Commit

Permalink
fix(ci): explicitly quote numeric versions in YAML
Browse files Browse the repository at this point in the history
Signed-off-by: vados <[email protected]>
  • Loading branch information
t3hmrman committed Oct 1, 2024
1 parent b004a7e commit 233a528
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,24 @@ jobs:
runner: ubuntu-22.04
container:
arch: amd64
pg_version: 15.8
pgrx_pg_version: pg15
pg_version: "15.8"
os_version: alpine3.20.3
- triple: x86_64-unknown-linux-musl
gh:
runner: ubuntu-22.04
container:
arch: amd64
pg_version: 16.4
pgrx_pg_version: pg16
pg_version: "16.4"
os_version: alpine3.20.3
- triple: x86_64-unknown-linux-musl
gh:
runner: ubuntu-22.04
container:
arch: amd64
pg_version: 17.0
pgrx_pg_version: pg17
pg_version: "17.0"
os_version: alpine3.20.3
steps:
- uses: actions/checkout@v3
Expand All @@ -57,7 +60,7 @@ jobs:
run: just build-image push-image
env:
CONTAINER_IMAGE_ARCH: ${{ matrix.config.container.arch }}
PGRX_PG_VERSION: ${{ matrix.config.container.pg_version }}
PGRX_PG_VERSION: ${{ matrix.config.container.pgrx_pg_version }}
POSTGRES_IMAGE_VERSION: ${{ matrix.config.container.pg_version }}
POSTGRES_OS_IMAGE_VERSION: ${{ matrix.config.container.os_version }}
PGIDKIT_IMAGE_TAG_SUFFIX: "-prerelease"
Expand All @@ -67,6 +70,6 @@ jobs:
run: just build-image push-image
env:
CONTAINER_IMAGE_ARCH: ${{ matrix.config.container.arch }}
PGRX_PG_VERSION: ${{ matrix.config.container.pg_version }}
PGRX_PG_VERSION: ${{ matrix.config.container.pgrx_pg_version }}
POSTGRES_IMAGE_VERSION: ${{ matrix.config.container.pg_version }}
POSTGRES_OS_IMAGE_VERSION: ${{ matrix.config.container.os_version }}
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
- pgrx:
pg-version: pg15
pg:
version: 15.8
version: "15.8"
- pgrx:
pg-version: pg16
pg:
version: 16.4
version: "16.4"
- pgrx:
pg-version: pg17
pg:
version: 17.0
version: "17.0"
steps:
- uses: actions/checkout@v3

Expand All @@ -59,15 +59,15 @@ jobs:
- pgrx:
pg-version: pg15
pg:
version: 15.8
version: "15.8"
- pgrx:
pg-version: pg16
pg:
version: 16.4
version: "16.4"
- pgrx:
pg-version: pg17
pg:
version: 17.0
version: "17.0"
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 233a528

Please sign in to comment.