From 6b929a3fff57f9e0891259644c53c22f01c8c656 Mon Sep 17 00:00:00 2001 From: Mason Tran Date: Fri, 29 Mar 2024 13:59:08 -0400 Subject: [PATCH] [github-actions] fix `Build and push` step of docker workflow (#826) A bug was introduced in openthread/ot-efr32#793 where I moved `Dockerfile` to `docker/Dockerfile` but did not update both the build steps in the docker workflow, causing [this failure](https://github.com/SiliconLabs/ot-efr32/actions/runs/8468125501/job/23200371772#step:13:126). This fixes the bug by specifying the new location of the Dockerfile in the `Build and push` step. --- .github/workflows/docker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 8a954122..19d332d6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -126,6 +126,7 @@ jobs: github.ref == 'refs/heads/main' with: context: . + file: docker/Dockerfile push: true tags: | ${{ env.LATEST_TAG }}