Skip to content

Commit

Permalink
Update build container for OpenWrt 23.05.4 (#18)
Browse files Browse the repository at this point in the history
Only update the `latest` tag when OPENWRT_VERSION is not overridden.
  • Loading branch information
ksperling-apple authored Aug 5, 2024
1 parent 164d2a3 commit 1b6974c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .containers/matter-openwrt-build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG OPENWRT_VERSION=23.05.3
ARG OPENWRT_VERSION=23.05.4
FROM ghcr.io/openwrt/sdk:x86-generic-${OPENWRT_VERSION}
LABEL org.opencontainers.image.description="Pre-warmed OpenWrt SDK"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-matter-openwrt-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
context: .containers/matter-openwrt-build
buildargs: OPENWRT_VERSION
registry: ghcr.io
tags: "latest,${{ env.OPENWRT_VERSION }}"
tags: "${{ inputs.openwrt-version-override && '' || 'latest,'}}${{ env.OPENWRT_VERSION }}"
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
no_push: ${{ github.repository_owner != 'project-chip' || github.event_name == 'pull_request' || github.event.ref != 'refs/heads/main' }}

0 comments on commit 1b6974c

Please sign in to comment.