Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Jul 14, 2024
1 parent 0b87eeb commit fdd05b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,18 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU # to build multitarget containers
uses: docker/setup-qemu-action@v3
# - name: Set up QEMU # to build multitarget containers
# uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
uses: docker/build-push-action@v5
with:
context: src
platforms: linux/amd64,linux/arm64
# platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: ${{ (github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')) || github.event_name == 'workflow_dispatch' }}
tags: >-
zondax/builder-zemu:${{ steps.hash.outputs.hash }},
zondax/builder-zemu:latest,
zondax/builder-zemu:speculos-${{ steps.hash.outputs.speculosHash }}
lightsailnetwork/builder-zemu:${{ steps.hash.outputs.hash }},
lightsailnetwork/builder-zemu:latest,
lightsailnetwork/builder-zemu:speculos-${{ steps.hash.outputs.speculosHash }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOCKER_IMAGE=zondax/builder-zemu
DOCKER_IMAGE=lightsailnetwork/builder-zemu

INTERACTIVE:=$(shell [ -t 0 ] && echo 1)

Expand Down

0 comments on commit fdd05b8

Please sign in to comment.