From 3bff9f5713bd31992c63bb1aeed91f5e3c206f37 Mon Sep 17 00:00:00 2001 From: msfstef Date: Wed, 14 Aug 2024 18:37:13 +0300 Subject: [PATCH] Fix PG_VERSION env --- .github/workflows/build_docker_builder.yml | 2 +- .github/workflows/build_wasm_postgres.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_docker_builder.yml b/.github/workflows/build_docker_builder.yml index 9d99a4b6..9be85abf 100644 --- a/.github/workflows/build_docker_builder.yml +++ b/.github/workflows/build_docker_builder.yml @@ -32,7 +32,7 @@ jobs: - name: Log build parameters and set image tag run: | echo "Building with PG_VERSION=${PG_VERSION} and SDK_VERSION=${SDK_VERSION}" - echo "IMGTAG=$${PG_VERSION}_${SDK_VERSION}" >> $GITHUB_ENV + echo "IMGTAG=${PG_VERSION}_${SDK_VERSION}" >> $GITHUB_ENV - name: Check if image exists id: image-exists diff --git a/.github/workflows/build_wasm_postgres.yml b/.github/workflows/build_wasm_postgres.yml index 87aa3237..038bd461 100644 --- a/.github/workflows/build_wasm_postgres.yml +++ b/.github/workflows/build_wasm_postgres.yml @@ -27,7 +27,9 @@ jobs: fetch-depth: 1 - name: Set build parameters - run: cat ${{ env.BUILD_CONFIG_FILE }} >> $GITHUB_ENV + run: | + cat ${{ env.BUILD_CONFIG_FILE }} >> $GITHUB_ENV + echo "PGVERSION=${PG_VERSION}" >> $GITHUB_ENV - name: Restore cached build id: cache-restore