This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
Merge pull request #3 from lalithkota/develop #3
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: Build Docker and Push | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
docker-build: | |
name: Docker Build and Push | |
runs-on: ubuntu-latest | |
env: | |
NAMESPACE: ${{ secrets.docker_hub_organisation }} | |
SERVICE_NAME: social-payments-account-registry | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker build and push | |
run: | | |
BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's,.*/\(.*\),\1,') | |
echo "${{ secrets.docker_hub_token }}" | docker login -u ${{ secrets.docker_hub_actor }} --password-stdin | |
if [ $? -ne 0 ];then | |
echo "::error::Failed to Login to dockerhub" | |
exit 1; | |
fi | |
IMAGE_ID=$NAMESPACE/$SERVICE_NAME | |
# Change all uppercase to lowercase | |
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | |
VERSION=$BRANCH_NAME | |
if [[ $BRANCH_NAME == master || $BRANCH_NAME == main ]]; then | |
VERSION=develop | |
fi | |
echo IMAGE_ID=$IMAGE_ID | |
echo VERSION=$VERSION | |
docker build . \ | |
--file Dockerfile \ | |
--tag $IMAGE_ID:$VERSION | |
docker push $IMAGE_ID:$VERSION |