Skip to content

Bump k8s.io/apimachinery from 0.28.2 to 0.28.3 #12

Bump k8s.io/apimachinery from 0.28.2 to 0.28.3

Bump k8s.io/apimachinery from 0.28.2 to 0.28.3 #12

Workflow file for this run

name: Docker
on:
pull_request:
push:
tags:
- "*"
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Build Docker Image
run: make build
- name: Push Docker Image
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push'
run: make push
- name: Push Latest Docker Image
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: make push-latest