Skip to content

Commit

Permalink
Fix for docker image tag in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
philhawthorne committed Nov 27, 2023
1 parent e32977e commit 8f1b1e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
env:
DOCKER_REGISTRY: hub.docker.com
DOCKER_IMAGE: philhawthorne/ha-dockermon:json-arm
DOCKER_IMAGE: philhawthorne/ha-dockermon
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
DOCKER_TARGET_PLATFORM: linux/arm/v7
Expand All @@ -32,4 +32,4 @@ jobs:
- name: Run Buildx (push image)
if: success()
run: |
docker buildx build --platform ${{ steps.prepare.outputs.docker_platform }} --tag ${{ steps.prepare.outputs.docker_image }} --file ./Dockerfile.RaspberryPi --output type=image,push=true .
docker buildx build --platform ${{ steps.prepare.outputs.docker_platform }} --tag ${{ steps.prepare.outputs.docker_image }}:json-arm --file ./Dockerfile.RaspberryPi --output type=image,push=true .

0 comments on commit 8f1b1e4

Please sign in to comment.