-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOSIP-29162] Updated workflows as per reusable workflow format
[MOSIP-25631]
- Loading branch information
syed-salman-technoforte
committed
Sep 21, 2023
1 parent
aa7dc77
commit ce93cb0
Showing
8 changed files
with
119 additions
and
745 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: admin-ui build upon a push | ||
|
||
on: | ||
release: | ||
types: [published] | ||
pull_request: | ||
types: [opened] | ||
push: | ||
branches: | ||
- MOSIP* | ||
- 1.* | ||
- '!release-branch' | ||
- develop | ||
- master | ||
- '*' | ||
|
||
jobs: | ||
build-admin-ui: | ||
uses: mosip/kattu/.github/workflows/npm-build.yml@master | ||
with: | ||
SERVICE_LOCATION: ./admin-ui | ||
BUILD_ARTIFACT: admin-ui | ||
secrets: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
build-docker-admin-ui: | ||
needs: build-admin-ui | ||
strategy: | ||
matrix: | ||
include: | ||
- SERVICE_LOCATION: './admin-ui' | ||
SERVICE_NAME: 'admin-ui' | ||
NPM_BUILD: true | ||
BUILD_ARTIFACT: 'admin-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-admin-ui | ||
if: "${{ github.event_name != 'pull_request' }}" | ||
uses: mosip/kattu/.github/workflows/npm-sonar-analysis.yml@master | ||
with: | ||
SERVICE_LOCATION: admin-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 }} |
This file was deleted.
Oops, something went wrong.
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
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 }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.