Skip to content

Update install-kindnet.yaml to 1.6.0 #8

Update install-kindnet.yaml to 1.6.0

Update install-kindnet.yaml to 1.6.0 #8

Workflow file for this run

name: e2e
on:
push:
tags:
- 'v*'
workflow_dispatch:
env:
GO_VERSION: "1.22.3"
K8S_VERSION: "v1.30.0"
KIND_VERSION: "v0.22.0"
KIND_CLUSTER_NAME: "kindnet"
REGISTRY: ghcr.io
IMAGE_NAME: aojea/kindnetd
jobs:
publish:
name: publish
runs-on: ubuntu-latest
timeout-minutes: 100
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}