Skip to content

Updated the changes to test the retries #157

Updated the changes to test the retries

Updated the changes to test the retries #157

name: CI Docker Build and Push for Frontend Services
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_dispatch: # Manual trigger
inputs:
RELEASE_VERSION:
description: 'Release version (e.g., 1.0.0). The "v" prefix will be automatically added.'
required: false
default: ''
jobs:
ci-build:
name: CI Docker Build
runs-on: ubuntu-latest
if: github.event_name != 'workflow_dispatch' # Only run on push or PR, skip manual dispatch
steps:
# Step 1: Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v3
# Step 2: Set up Docker Image Tag
- name: Set up Docker Image Tag
id: tag_step
run: |
DATE_TAG="v$(date +'%Y.%m.%d')"
# Create a default tag for CI builds that isn't meant to be pushed
NEW_TAG="${DATE_TAG}-ci"
echo "Docker Tag: ${NEW_TAG}"
echo "::set-output name=tag::${NEW_TAG}"
# Step 3: Build Docker Image (without push)
- name: Build Docker Image (No Push)
uses: docker/build-push-action@v5
with:
context: ./infra_env_dashboard/frontend # Correct context for Dockerfile location
push: false
tags: |
sam123ben/infra-dashboard:${{ steps.tag_step.outputs.tag }}
manual-build-push:
name: Manual Docker Build and Push
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' # Only run on manual trigger
steps:
# Step 1: Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v3
# Step 2: Validate Release Version
- name: Validate Release Version
run: |
if [ -z "${{ github.event.inputs.RELEASE_VERSION }}" ]; then
echo "Error: Please provide a valid release version for manual build and push."
exit 1
fi
# Step 3: Log in to Docker Hub using the Access Token
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PAT_TOKEN }}
# Step 4: Build and Push Docker Image
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: ./infra_env_dashboard/frontend # Correct context for Dockerfile location
push: true
tags: |
sam123ben/infra-dashboard:latest
sam123ben/infra-dashboard:${{ github.event.inputs.RELEASE_VERSION }}