Skip to content

Ensure certain attributes within the kubernetes config only for devel… #8

Ensure certain attributes within the kubernetes config only for devel…

Ensure certain attributes within the kubernetes config only for devel… #8

Workflow file for this run

name: Docker Image CI
on:
push:
branches: ["main"]
tags:
- "v*"
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get current branch or tag
id: get_ref
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
REF_NAME="${{ github.event.pull_request.head.ref }}"
else
REF_NAME=$(echo ${GITHUB_REF#refs/*/})
fi
echo "REF_NAME=$REF_NAME" >> $GITHUB_ENV
echo "Current ref is: $REF_NAME"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: us-docker.pkg.dev/qpoint-edge/public/kubernetes-qtap-operator
tags: |
type=sha
type=raw,value=branch-${{ env.REF_NAME }},enable=${{ env.REF_NAME != 'main' }}
type=raw,value=release-${{ env.REF_NAME }},enable=${{ startsWith(env.REF_NAME, 'v') }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GAR
uses: docker/login-action@v3
with:
registry: us-docker.pkg.dev
username: _json_key
password: ${{ secrets.GAR_JSON_KEY }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64