Move aarch64 compatibility workaround to interactive image only #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
tags: | |
- "*" | |
schedule: | |
# Mondays 4:14AM UTC | |
- cron: "14 4 * * 1" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
id: buildx | |
with: | |
install: true | |
- name: Set Docker metadata (interactive variant) | |
id: metadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/${{ github.repository }} | |
name=trailofbits/eth-security-toolbox,enable=${{ github.repository == 'trailofbits/eth-security-toolbox' }} | |
tags: | | |
type=schedule | |
type=schedule,pattern=nightly-{{date 'YYYYMMDD'}} | |
type=ref,event=tag | |
type=ref,event=branch,prefix=testing- | |
type=edge | |
- name: Set Docker metadata (CI variant) | |
id: metadata-ci | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/${{ github.repository }}/ci | |
tags: | | |
type=schedule | |
type=schedule,pattern=nightly-{{date 'YYYYMMDD'}} | |
type=ref,event=tag | |
type=ref,event=branch,prefix=testing- | |
type=edge | |
- name: GitHub Container Registry Login | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker Hub Login | |
uses: docker/login-action@v3 | |
if: github.repository == 'trailofbits/eth-security-toolbox' | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} | |
- name: Docker Build and Push (interactive variant) | |
uses: docker/build-push-action@v6 | |
with: | |
platforms: linux/amd64,linux/arm64/v8 | |
target: toolbox | |
file: Dockerfile | |
pull: true | |
push: true | |
tags: ${{ steps.metadata.outputs.tags }} | |
labels: ${{ steps.metadata.outputs.labels }} | |
cache-from: ${{ (github.event_name != 'schedule' && 'type=gha') || '' }} | |
cache-to: type=gha,mode=max | |
- name: Docker Build and Push (CI variant) | |
uses: docker/build-push-action@v6 | |
with: | |
platforms: linux/amd64 | |
target: toolbox-ci | |
file: Dockerfile | |
pull: true | |
push: true | |
tags: ${{ steps.metadata-ci.outputs.tags }} | |
labels: ${{ steps.metadata-ci.outputs.labels }} | |
cache-from: ${{ (github.event_name != 'schedule' && 'type=gha') || '' }} | |
cache-to: type=gha,mode=max |