From cf41ed8b79a5d523e6fcd9ef78933c0738926675 Mon Sep 17 00:00:00 2001 From: Teagan Glenn Date: Sat, 31 Jan 2026 06:58:38 -0700 Subject: [PATCH] Fix image tagging --- .github/workflows/pull_request.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index b9eaac4ff..b26ae7a1f 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -89,8 +89,8 @@ jobs: - name: Pre-build devcontainer image uses: devcontainers/ci@v0.3 with: - imageName: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }}:latest - cacheFrom: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }}:latest + imageName: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }} + cacheFrom: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }} push: always python_tests: @@ -111,12 +111,12 @@ jobs: - name: Pre-Run mypy in devcontainer uses: devcontainers/ci@v0.3 with: - cacheFrom: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }}:latest + cacheFrom: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }} push: never runCmd: python3 -u -m mypy --config-file frigate/mypy.ini frigate - name: Pre-Run mypy in devcontainer uses: devcontainers/ci@v0.3 with: - cacheFrom: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }}:latest + cacheFrom: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }} push: never runCmd: python3 -u -m unittest