Add e2e CI execution (#1016) #456
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: | |
- master | |
tags: | |
- "v?[0-9]+.[0-9]+.[0-9]+" | |
- "v?[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+" | |
- "v?[0-9]+.[0-9]+.[0-9]+-dev.[0-9]+" | |
# pull_request: | |
env: | |
PLATFORMS: linux/amd64 | |
jobs: | |
docker: | |
name: Docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.ref }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Determine tag or commit | |
uses: haya14busa/action-cond@v1 | |
id: refortag | |
with: | |
cond: ${{ startsWith(github.ref, 'refs/tags/') }} | |
if_true: ${{ github.ref }} | |
if_false: latest | |
- name: Determine image tag | |
id: imagetag | |
run: echo "value=${TAG_OR_BRANCH##*/}" >> $GITHUB_OUTPUT | |
env: | |
TAG_OR_BRANCH: ${{ steps.refortag.outputs.value }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.CR_PAT }} | |
- name: Build kafka-operator | |
uses: docker/build-push-action@v3 | |
with: | |
tags: ghcr.io/banzaicloud/kafka-operator:${{ steps.imagetag.outputs.value }} | |
file: Dockerfile | |
platforms: ${{ env.PLATFORMS }} | |
push: true | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache |