Merge pull request #175 from kube-vip/dependabot/go_modules/github.co… #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish the latest dev image | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare Names | |
id: prep | |
run: | | |
DOCKER_IMAGE=kubevip/kube-vip-cloud-provider | |
VERSION=$(echo ${GITHUB_SHA} | cut -c1-8) | |
TAGS="${DOCKER_IMAGE}:${VERSION}" | |
TAGS="$TAGS,${DOCKER_IMAGE}:nightly" | |
echo ::set-output name=tags::${TAGS} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: kubevip | |
password: ${{ secrets.DOCKERHUB_KUBEVIP_TOKEN }} | |
- name: Build and push main branch | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm/v7,linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.prep.outputs.tags }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |