Skip to content

Commit

Permalink
Fix PG_VERSION env
Browse files Browse the repository at this point in the history
  • Loading branch information
msfstef committed Aug 14, 2024
1 parent 2b05b7b commit 3bff9f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build_wasm_postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3bff9f5

Please sign in to comment.