From ba4bd19d23d2a4eed23f3688320399f4a8e65915 Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Sun, 12 Dec 2021 13:58:06 -0500 Subject: [PATCH] tag images properly --- .github/workflows/build-and-push-images.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-push-images.yml b/.github/workflows/build-and-push-images.yml index 6991a14..74dea15 100644 --- a/.github/workflows/build-and-push-images.yml +++ b/.github/workflows/build-and-push-images.yml @@ -1,4 +1,4 @@ -name: Build and push images +name: build and push images on: push: branches: ['master'] @@ -9,6 +9,7 @@ jobs: strategy: matrix: include: + - { postgres: 9, alpine: '3.6' } - { postgres: 10, alpine: '3.8' } - { postgres: 11, alpine: '3.10' } - { postgres: 12, alpine: '3.12' } @@ -29,6 +30,6 @@ jobs: with: context: . push: true - tags: ${{ github.repository }}:9 + tags: ${{ github.repository }}:{{ matrix.postgres }} build-args: | ALPINE_VERSION=${{ matrix.alpine }}