Skip to content

Update golang.org/x/exp digest to 2d47ceb #587

Update golang.org/x/exp digest to 2d47ceb

Update golang.org/x/exp digest to 2d47ceb #587

Workflow file for this run

name: Build images
on:
push:
tags: ["v*.*.*"]
branches: [main]
pull_request:
jobs:
docker:
strategy:
matrix:
component: [controlplane, tetrad]
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64,linux/arm64
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository_owner }}/tetrapod-${{ matrix.component }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
file: ${{ matrix.component }}.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}