Skip to content

Commit

Permalink
Docker: added image with idf v5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Diegorro98 authored Jan 18, 2023
1 parent df134cf commit 73d6d7c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
IDF_VERSION: [v4.4.3, v5.0]

steps:
# The following steps are the standard boilerplate from
# https://github.com/marketplace/actions/build-and-push-docker-images
Expand All @@ -55,8 +59,9 @@ jobs:
context: tools/docker
file: tools/docker/matter-builds
push: true
tags: ${{ env.DOCKERHUB_REPO }}:${{ env.TAG_NAME }}
tags: ${{ env.DOCKERHUB_REPO }}:${{ env.TAG_NAME }}${{ ${{ matrix.IDF_VERSION }} != 'v4.4.3' && ${{ matrix.IDF_VERSION }} }}
platforms: ${{ env.BUILD_PLATFORMS }}
build-args: |
ESP_MATTER_CLONE_URL=${{ github.server_url }}/${{ github.repository }}.git
IDF_CLONE_SHALLOW=1
IDF_CLONE_BRANCH_OR_TAG=${{ matrix.IDF_VERSION }}

0 comments on commit 73d6d7c

Please sign in to comment.