From 6d5fce280e9cf0b73ec294b2a266328e3bbae703 Mon Sep 17 00:00:00 2001 From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com> Date: Sun, 3 Mar 2024 11:50:31 +0100 Subject: [PATCH] fix: typo in latest tag & build date --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4672691..d614e4d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,13 +52,13 @@ jobs: uses: redhat-actions/buildah-build@v2 with: image: postgres-autoconf - tags: ${{ matrix.platform == 'amd64' && format('{0}-alpine', matrix.pg_version) || format('{0}-alpine-{1}', matrix.pg_version, matrix.platform) }}${{ steps.tag-latest.output.tag || '' }} + tags: ${{ matrix.platform == 'amd64' && format('{0}-alpine', matrix.pg_version) || format('{0}-alpine-{1}', matrix.pg_version, matrix.platform) }}${{ steps.tag-latest.outputs.tag || '' }} context: . platforms: linux/${{ matrix.platform }} containerfiles: | Dockerfile build-args: | - BUILD_DATE=${{ steps.date.output.date }} + BUILD_DATE=${{ steps.date.outputs.date }} VCS_REF=${{ github.sha }} BASE_TAG=${{ matrix.pg_version }}-alpine