Skip to content

Bump golang from 1.18.3 to 1.21.4 in /injector (#32) #12

Bump golang from 1.18.3 to 1.21.4 in /injector (#32)

Bump golang from 1.18.3 to 1.21.4 in /injector (#32) #12

name: Publish Docker image
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
push_to_registries:
name: Push Docker image to multiple registries
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
aatarasoff/linkerd-easyauth-webhook
- name: Set up docker buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
- name: Build docker image
uses: docker/build-push-action@v5
with:
file: injector/Dockerfile
context: .
platforms: linux/amd64, linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max