Build and publish main image regularly #39
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: Build and publish main image regularly | |
on: | |
schedule: | |
- cron: '25 0 * * *' | |
workflow_dispatch: | |
jobs: | |
nightly_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to Github Packages | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build standard version | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: >- | |
plndr/kube-vip:${{ github.ref_name }}, | |
ghcr.io/kube-vip/kube-vip:${{ github.ref_name }} | |
- name: Build iptables version | |
id: docker_build_iptables | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: Dockerfile_iptables | |
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: >- | |
plndr/kube-vip-iptables:${{ github.ref_name }}, | |
ghcr.io/kube-vip/kube-vip-iptables:${{ github.ref_name }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |