Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.22.1 to 2.22.2 #6

Bump github.com/onsi/ginkgo/v2 from 2.22.1 to 2.22.2

Bump github.com/onsi/ginkgo/v2 from 2.22.1 to 2.22.2 #6

name: Image push for master
on:
push:
branches:
- master
env:
image-push-owner: 'k8snetworkplumbingwg'
jobs:
push:
name: Image push
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
if: ${{ github.repository_owner == env.image-push-owner }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push container image
if: ${{ github.repository_owner == env.image-push-owner }}
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:latest
file: images/Dockerfile