Skip to content

Commit bacf25d

Browse files
committed
fix: remove quotes from build args
1 parent d919353 commit bacf25d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ami-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ jobs:
6666
file: docker/Dockerfile
6767
target: pg-deb
6868
build-args: |
69-
ubuntu_release="${{ matrix.ubuntu }}"
70-
postgresql_major="${{ steps.version.outputs.postgresql_major }}"
71-
postgresql_release="${{ steps.version.outputs.postgresql_release }}"
72-
CPPFLAGS="-mcpu=${{ matrix.mcpu }}"
69+
ubuntu_release=${{ matrix.ubuntu }}
70+
postgresql_major=${{ steps.version.outputs.postgresql_major }}
71+
postgresql_release=${{ steps.version.outputs.postgresql_release }}
72+
CPPFLAGS=-mcpu=${{ matrix.mcpu }}
7373
tags: supabase/postgres:deb
7474
platforms: linux/${{ matrix.arch }}
7575
cache-from: type=gha

0 commit comments

Comments
 (0)