Skip to content

Commit

Permalink
Merge pull request #166 from syedsalman3753/develop
Browse files Browse the repository at this point in the history
[MOSIP-29143] Updated workflows with reusable templates
  • Loading branch information
ckm007 authored Sep 5, 2023
2 parents 04fd887 + bf488ad commit 45db553
Show file tree
Hide file tree
Showing 7 changed files with 114 additions and 711 deletions.
109 changes: 0 additions & 109 deletions .github/workflows/build.yml

This file was deleted.

55 changes: 55 additions & 0 deletions .github/workflows/push-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Pre-registration-ui build upon a push

on:
release:
types: [published]
push:
branches:
- '!release-branch'
- release-1*
- master
- 1.0.*
- develop
- 1.1.*
- MOSIP-11719
- 1.2.*

jobs:
build-pre-registration-ui:
uses: mosip/kattu/.github/workflows/npm-build.yml@master
with:
SERVICE_LOCATION: pre-registration-ui
BUILD_ARTIFACT: pre-registration-ui
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

build-docker-pre-registration-ui:
needs: build-pre-registration-ui
strategy:
matrix:
include:
- SERVICE_LOCATION: 'pre-registration-ui'
SERVICE_NAME: 'pre-registration-ui'
NPM_BUILD: true
BUILD_ARTIFACT: 'pre-registration-ui'
uses: mosip/kattu/.github/workflows/docker-build.yml@master
with:
SERVICE_LOCATION: ${{ matrix.SERVICE_LOCATION }}
SERVICE_NAME: ${{ matrix.SERVICE_NAME }}
NPM_BUILD: ${{ matrix.NPM_BUILD }}
BUILD_ARTIFACT: ${{ matrix.BUILD_ARTIFACT }}
secrets:
DEV_NAMESPACE_DOCKER_HUB: ${{ secrets.DEV_NAMESPACE_DOCKER_HUB }}
ACTOR_DOCKER_HUB: ${{ secrets.ACTOR_DOCKER_HUB }}
RELEASE_DOCKER_HUB: ${{ secrets.RELEASE_DOCKER_HUB }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

sonar-analysis:
needs: build-pre-registration-ui
uses: mosip/kattu/.github/workflows/npm-sonar-analysis.yml@master
with:
SERVICE_LOCATION: pre-registration-ui
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORG_KEY: ${{ secrets.ORG_KEY }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
139 changes: 0 additions & 139 deletions .github/workflows/push_trigger.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/release-changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release/pre-release Preparation.

on:
workflow_dispatch:
inputs:
MESSAGE:
description: 'Triggered for release or pe-release'
required: false
default: 'Release Preparation'
RELEASE_TAG:
description: 'tag to update'
required: true
SNAPSHOT_TAG:
description: 'tag to be replaced'
required: true
BASE:
description: 'base branch for PR'
required: true
jobs:
maven-release-preparation:
uses: mosip/kattu/.github/workflows/release-changes.yml@master
with:
MESSAGE: ${{ inputs.MESSAGE }}
RELEASE_TAG: ${{ inputs.RELEASE_TAG }}
SNAPSHOT_TAG: ${{ inputs.SNAPSHOT_TAG }}
BASE: ${{ inputs.BASE }}
56 changes: 0 additions & 56 deletions .github/workflows/release_changes.yml

This file was deleted.

Loading

0 comments on commit 45db553

Please sign in to comment.