Skip to content

📖 Update README.md with instructions to use with GitHub workflow #12

📖 Update README.md with instructions to use with GitHub workflow

📖 Update README.md with instructions to use with GitHub workflow #12

Workflow file for this run

name: Build and Push Docker Image for EKS Helm Client
on:
push:
branches:
- 'v*.*.*'
jobs:
build-and-publish-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: branch_name
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
platforms: linux/amd64
tags: projectoss/eks-helm-client:${{ steps.branch_name.outputs.branch }}