Skip to content

Update module go.uber.org/mock/mockgen to v0.5.0 (#452) #359

Update module go.uber.org/mock/mockgen to v0.5.0 (#452)

Update module go.uber.org/mock/mockgen to v0.5.0 (#452) #359

Workflow file for this run

name: Build images
on:
push:
branches: main
release:
types:
- published
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push ${{github.event.release.tag_name }}
id: docker_build_release
uses: docker/build-push-action@v6
if: ${{ github.event.release.tag_name != '' }}
with:
push: true
tags: ghcr.io/bakito/kubexporter:latest,ghcr.io/bakito/kubexporter:${{ github.event.release.tag_name }}
platforms: linux/amd64
provenance: false
build-args: VERSION=${{ github.event.release.tag_name }}
- name: Build and push main
id: docker_build_main
uses: docker/build-push-action@v6
if: ${{ github.event.release.tag_name == '' }}
with:
push: true
tags: ghcr.io/bakito/kubexporter:main
platforms: linux/amd64
provenance: false
build-args: VERSION=main
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}