Skip to content

Commit

Permalink
Merge pull request ceph#86 from Madhu-1/docker-build-push
Browse files Browse the repository at this point in the history
ci: github action for docker build push
  • Loading branch information
nb-ohad authored Aug 6, 2024
2 parents 4919ece + ce0ddbc commit 0b13d9e
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: build-and-push
on:
push:
branches:
- main
- release-*
tags:
- '*'

permissions:
contents: read

jobs:
build-and-push:
runs-on: ubuntu-latest
if: github.repository == 'ceph/ceph-csi-operator'
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

#- name: Login to Quay.io
#uses: docker/login-action@v3
#with:
# registry: quay.io
# username: ${{ secrets.QUAY_IO_USERNAME }}
# password: ${{ secrets.QUAY_IO_PASSWORD }}
- name: Set up Image tag
run: |
echo "image tag ${{ github.ref }}"
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
echo "IMAGE_TAG=latest" >> $GITHUB_ENV
elif [[ "${{ github.ref }}" == refs/heads/* ]]; then
TAG=$(echo ${{ github.ref }} | sed 's/refs\/heads\///')
echo "IMAGE_TAG=${TAG}" >> $GITHUB_ENV
elif [[ "${{ github.ref }}" == refs/tags/* ]]; then
TAG=$(echo ${{ github.ref }} | sed 's/refs\/tags\///')
echo "IMAGE_TAG=${TAG}" >> $GITHUB_ENV
fi
- name: print env
run: echo $IMAGE_TAG

- name: Build and push Docker images
run: make docker-buildx IMAGE_TAG=${{ env.IMAGE_TAG }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ go.work.sum

# Locally generated install files
dist/

# Locally generated dockerfile for multi-arch
Dockerfile.cross

0 comments on commit 0b13d9e

Please sign in to comment.