Skip to content

[MOSIP-35160] Updated URL from https://github.com/mosip/mosip-infra/b… #62

[MOSIP-35160] Updated URL from https://github.com/mosip/mosip-infra/b…

[MOSIP-35160] Updated URL from https://github.com/mosip/mosip-infra/b… #62

Workflow file for this run

name: Pre-registration-ui build upon a push
on:
release:
types: [published]
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- '!release-branch'
- release*
- master
- 1.*
- develop
- MOSIP*
jobs:
build-pre-registration-ui:
uses: mosip/kattu/.github/workflows/npm-build.yml@develop
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'
fail-fast: false
name: ${{ matrix.SERVICE_NAME }}
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
if: "${{ github.event_name != 'pull_request' }}"
uses: mosip/kattu/.github/workflows/npm-sonar-analysis.yml@master
with:
SERVICE_LOCATION: 'pre-registration-ui'
SONAR_URL: 'https://sonarcloud.io'
PROJECT_KEY: "mosip_${{ github.event.repository.name }}"
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORG_KEY: ${{ secrets.ORG_KEY }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}