From 16bbd47e58b1139bca97b7cd038f6138de540f55 Mon Sep 17 00:00:00 2001 From: Brett Patterson Date: Sat, 24 Feb 2024 12:44:16 -0500 Subject: [PATCH] Fix references to mysql in postgres github workflow --- .github/workflows/postgres.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml index fd79364..ac4c8a7 100644 --- a/.github/workflows/postgres.yml +++ b/.github/workflows/postgres.yml @@ -9,7 +9,7 @@ on: - .github/workflows/postgres.yml jobs: - mysql: + postgres: name: PostgreSQL runs-on: ubuntu-latest @@ -47,14 +47,14 @@ jobs: run: |- ESCAPED_VERSION="$(echo ${{ matrix.version }} | sed 's/\./\\\./g')" POSTGRES_VERSION=$( - docker run --rm gcr.io/go-containerregistry/crane:v0.8.0 ls mysql \ + docker run --rm gcr.io/go-containerregistry/crane:v0.8.0 ls postgres \ | egrep "^${ESCAPED_VERSION}(\.[0-9]+)?(-alpine)?\$" | sort -Vr | head -n1 ) echo "POSTGRES_VERSION=${POSTGRES_VERSION}" | tee /dev/stderr >> $GITHUB_ENV - uses: docker/build-push-action@v3 with: - context: mysql + context: postgres platforms: linux/amd64,linux/arm64 build-args: POSTGRES_VERSION=${{ env.POSTGRES_VERSION }} push: ${{ github.ref == 'refs/heads/main' && !env.ACT }}