Skip to content

Commit b34cc97

Browse files
committed
fix workflow
1 parent 2c03865 commit b34cc97

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/publish-docker.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -142,17 +142,17 @@ jobs:
142142
PG_VERSION: ${{ steps.version.outputs.pg_major || '17' }}
143143
run: |
144144
if [ "${{ matrix.service }}" = "postgres" ]; then
145-
{
146-
echo "args<<'EOT'"
147-
echo "CORE_UID=999"
148-
echo "CORE_GID=999"
149-
echo "CORE_USERNAME=postgres"
150-
echo "CORE_GECOS=Core Data PostgreSQL Administrator"
151-
echo "CORE_HOME=/home/postgres"
152-
echo "PG_VERSION=${PG_VERSION}"
153-
echo "AGE_VERSION=master"
154-
echo "EOT"
155-
} >>"$GITHUB_OUTPUT"
145+
cat <<'EOF' >>"$GITHUB_OUTPUT"
146+
args<<EOT
147+
CORE_UID=999
148+
CORE_GID=999
149+
CORE_USERNAME=postgres
150+
CORE_GECOS=Core Data PostgreSQL Administrator
151+
CORE_HOME=/home/postgres
152+
PG_VERSION=${PG_VERSION}
153+
AGE_VERSION=master
154+
EOT
155+
EOF
156156
else
157157
echo "args=" >>"$GITHUB_OUTPUT"
158158
fi

0 commit comments

Comments
 (0)