fix(docker): build with whatsapp_native tag and publish picoclaw-whatsapp image

Switch Dockerfile default build target to build-whatsapp-native-docker so the
image is compiled with -tags whatsapp_native. Also publish the picoclaw-whatsapp
tag alongside sushi30 and sha-* in the CI workflow.

Closes #37

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
github-actions[bot] 2026-04-02 22:03:52 +02:00
parent 561f483521
commit b028a44dc7
2 changed files with 2 additions and 1 deletions

View file

@ -43,6 +43,7 @@ jobs:
push: true push: true
tags: | tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sushi30 ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sushi30
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:picoclaw-whatsapp
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sha-${{ steps.sha.outputs.short }} ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sha-${{ steps.sha.outputs.short }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max

View file

@ -13,7 +13,7 @@ RUN go mod download
# Copy source and build # Copy source and build
COPY . . COPY . .
ARG BUILD_TARGET=build ARG BUILD_TARGET=build-whatsapp-native-docker
RUN make ${BUILD_TARGET} RUN make ${BUILD_TARGET}
# ============================================================ # ============================================================