From ae2b2493dc750e57af2f7165159ca5e7689b96ce Mon Sep 17 00:00:00 2001 From: AJ Jordan Date: Thu, 3 Oct 2024 02:42:32 -0400 Subject: [PATCH] Tag GitHub Actions builds as `latest` Should hopefully fix push problems. --- .github/workflows/build-and-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index 8412a5a..8887040 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -25,7 +25,7 @@ jobs: - name: Build container images # Truly the reason this is Podman and not Docker is because I copied this workflow from a RHEL container stack repo and like # #lazy - run: podman build --format docker -t synapse-dev-env ${{ matrix.version }} . + run: podman build --format docker -t synapse-dev-env:latest ${{ matrix.version }} . - name: Push container images if: github.ref == 'refs/heads/main' && github.event_name == 'push'