Skip to content

Merge pull request #9 from qpoint-io/marc-barry/helm-image-versioning #25

Merge pull request #9 from qpoint-io/marc-barry/helm-image-versioning

Merge pull request #9 from qpoint-io/marc-barry/helm-image-versioning #25

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: Modify REF_NAME if it's a version tag
if: startsWith(env.REF_NAME, 'v')
run: |
REF_NAME="${{ env.REF_NAME }}"
MODIFIED_REF_NAME="${REF_NAME:1}"
echo "MODIFIED_REF_NAME=$MODIFIED_REF_NAME" >> $GITHUB_ENV
- 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=v${{ env.MODIFIED_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