Merge pull request #154 from backguynn/main #163
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: Docker | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
tagName: | |
description: 'Tag Name' | |
required: true | |
default: 'latest' | |
jobs: | |
build: | |
name: docker-ci | |
runs-on: ubuntu-20.04 | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '>=1.19.0' | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build the kube-loxilb image | |
run: make | |
- name: Build the latest loxilb Docker image | |
if: github.event.inputs.tagName == '' | |
run: docker build . --tag ghcr.io/loxilb-io/kube-loxilb:latest | |
- name: Build the kube-loxilb Docker image with given tag | |
if: github.event.inputs.tagName != '' | |
run: docker build . --tag ghcr.io/loxilb-io/kube-loxilb:${{ github.event.inputs.tagName }} | |
- name: Publish the latest loxilb Docker image | |
if: | | |
github.repository == 'loxilb-io/kube-loxilb' | |
&& github.event.inputs.tagName == '' | |
run: docker push ghcr.io/loxilb-io/kube-loxilb:latest | |
- name: Publish the kube-loxilb Docker image with given tag | |
if: | | |
github.repository == 'loxilb-io/kube-loxilb' | |
&& github.event.inputs.tagName != '' | |
run: docker push ghcr.io/loxilb-io/kube-loxilb:${{ github.event.inputs.tagName }} |