Skip to content

Merge pull request #78 from garethahealy/hadolint #12

Merge pull request #78 from garethahealy/hadolint

Merge pull request #78 from garethahealy/hadolint #12

name: Build kyverno-cli
on:
push:
paths:
- .github/workflows/kyverno-cli-build.yaml
- kyverno-cli/**
jobs:
build:
env:
context: kyverno-cli
image_name: kyverno-cli
branch_name: ${{ github.head_ref || github.ref_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get image tags
id: image_tags
run: |
echo -n ::set-output name=IMAGE_TAGS::
TAGS=('latest')
TAGS+=($(grep "LABEL version" kyverno-cli/Dockerfile_build | cut -d '"' -f 2))
echo "${TAGS[*]}"
- uses: hadolint/[email protected]
with:
dockerfile: kyverno-cli/Dockerfile_build
ignore: DL3041 # https://github.com/hadolint/hadolint/wiki/DL3041
- name: Build image
id: build_image
uses: redhat-actions/buildah-build@v2
with:
context: ${{ env.context }}
dockerfiles: |
./${{ env.context }}/Dockerfile_build
image: ${{ env.image_name }}
oci: true
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}"
- name: Push to ghcr.io
if: ${{ env.branch_name == 'master' }} # Stops push running when dependabot creates a PR, which fails due to token
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build_image.outputs.image }}
registry: ghcr.io/${{ github.repository }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
tags: ${{ steps.build_image.outputs.tags }}