Skip to content

Commit

Permalink
updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nipunarora-eGov committed Jun 4, 2024
1 parent ff518b7 commit f86fe48
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mfe-core-ui-docker.yml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: core ui service docker Image CI

on:
push:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]

jobs:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mfe-dss-ui-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: dss ui service docker Image CI

on:
push:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]

jobs:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mfe-engagement-ui-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: engagement ui service docker Image CI

on:
push:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]

jobs:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mfe-hrms-ui-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: hrms ui service docker Image CI

on:
push:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]

jobs:

Expand Down
49 changes: 49 additions & 0 deletions .github/workflows/mfe-microplan-web-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: microplan ui service docker Image CI

on:
push:
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe", "develop-mfe-microplan-common-pkgs" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for tags and branches

- name: Set up environment variables
id: env
run: |
echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
echo "ACTION_NUMBER=${GITHUB_RUN_NUMBER}" >> $GITHUB_ENV
echo "COMMIT_ID=${GITHUB_SHA: -8}" >> $GITHUB_ENV # Extract last 8 characters of SHA
- name: Build the Docker image
id: docker_build
working-directory: ./micro-ui/web/packages/microplan
run: |
IMAGE_TAG=egovio/microplan-mfe:${{ env.BRANCH_NAME }}-${{ env.COMMIT_ID }}-${{ env.ACTION_NUMBER }}
docker build . \
--file docker/Dockerfile \
--tag $IMAGE_TAG
echo "::set-output name=image_name::$IMAGE_TAG"
- name: Login to Docker Hub and Push Docker Image
working-directory: ./micro-ui/web/packages/microplan
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
IMAGE_NAME: ${{ steps.docker_build.outputs.image_name }}
run: |
# Authenticate with Docker Hub
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
# Push the image to Docker Hub
docker push $IMAGE_NAME
echo "Docker image pushed: $IMAGE_NAME"
4 changes: 2 additions & 2 deletions .github/workflows/mfe-pgr-ui-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: pgr ui service docker Image CI

on:
push:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
jobs:

build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mfe-workbench-web-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: workbench ui service docker Image CI

on:
push:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]
pull_request:
branches: [ "develop-mfe" ]
branches: [ "develop-mfe","develop-mfe-microplan-common-pkgs" ]

jobs:

Expand Down

0 comments on commit f86fe48

Please sign in to comment.